Activities of "rferrarin"

this is from a brand new template project, and these are the only mods I did

  • enabled redis
"Redis": {
    "IsEnabled": "true",
    "Configuration": "127.0.0.1:6379"
  }
  • disable multitenancy
public static class MultiTenancyConsts
{
    /* Enable/disable multi-tenancy easily in a single point.
     * If you will never need to multi-tenancy, you can remove
     * related modules and code parts, including this file.
     */
    public const bool IsEnabled = false;
}

-logs

public async static Task<int> Main(string[] args)
    {
        Log.Logger = new LoggerConfiguration()
//#if DEBUG
            .MinimumLevel.Verbose()
//#else
//            .MinimumLevel.Information()
//#endif
            //.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
            //.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
            .Enrich.FromLogContext()
            .WriteTo.Async(c => c.File("Logs/logs.txt"))
            .WriteTo.Async(c => c.Console())
            .CreateLogger();

- jobs
Configure<AbpBackgroundJobOptions>(options =>
        {
            options.IsJobExecutionEnabled = false; //Disables job execution
        });

- health
    private void ConfigureHealthChecks(ServiceConfigurationContext context)
    {
        //context.Services.AddHangTestHealthChecks();
    }

this is from the verbose log

2023-03-06 11:15:26.138 +01:00 [DBG] SaveChanges completed for 'OpenIddictProDbContext' with 0 entities written to the database.
2023-03-06 11:15:26.138 +01:00 [DBG] 'OpenIddictProDbContext' disposed.
2023-03-06 11:15:26.138 +01:00 [DBG] Disposing connection to database 'HangTest' on server 'localhost'.
2023-03-06 11:15:26.138 +01:00 [DBG] Disposed connection to database '' on server '' (0ms).
2023-03-06 11:15:26.138 +01:00 [DBG] 'HangTestDbContext' disposed.
2023-03-06 11:15:26.138 +01:00 [DBG] Disposing connection to database 'HangTest' on server 'localhost'.
2023-03-06 11:15:26.138 +01:00 [DBG] Disposed connection to database '' on server '' (0ms).
2023-03-06 11:15:26.139 +01:00 [DBG] Connection ID "17582052959749931039" disconnecting.
2023-03-06 11:15:26.139 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44384/connect/authorize?client_id=HangTest_Blazor&redirect_uri=https%3A%2F%2Flocalhost%3A44333%2Fauthentication%2Flogin-callback&response_type=code&scope=openid%20profile%20HangTest%20roles%20email%20phone&state=7dfdd71a476749f09bd3226f6d512edd&code_challenge=ACaoLbi7UUVG_1IJtE4OWvSOZt0SDBbQt5sAGGF4kWg&code_challenge_method=S256&response_mode=query - - - 302 - - 702.6425ms
2023-03-06 11:15:30.997 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44384/.well-known/openid-configuration - -
2023-03-06 11:15:30.997 +01:00 [VRB] All hosts are allowed.
2023-03-06 11:15:30.997 +01:00 [DBG] The request path /.well-known/openid-configuration does not match a supported file type
2023-03-06 11:15:30.997 +01:00 [DBG] No candidates found for the request path '/.well-known/openid-configuration'
2023-03-06 11:15:30.997 +01:00 [DBG] Request did not match any endpoints
2023-03-06 11:15:30.997 +01:00 [DBG] The request has an origin header: 'https://localhost:44333'.
2023-03-06 11:15:30.997 +01:00 [INF] CORS policy execution successful.

this is the logout part

and this is the login

I've tried with chrome and edge, same behavior

I've disabled background jobs as they where taking some time and I don't really neeed them in my app, however, I'm still having the problem

2023-03-06 10:35:05.293 +01:00 [INF] The authorization response was successfully returned to 'https://localhost:44374/authentication/login-callback' using the query response mode: { "code": "[redacted]", "state": "557c3358d46f43aabc92583e355cee5d", "iss": "https://localhost:44325/" }. 2023-03-06 10:35:05.294 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ApplyAuthorizationResponseContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+Authentication+ProcessQueryResponse. 2023-03-06 10:35:05.294 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ApplyAuthorizationResponseContext was marked as handled by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+Authentication+ProcessQueryResponse. 2023-03-06 10:35:05.294 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessSignInContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Authentication+ApplyAuthorizationResponse1[[OpenIddict.Server.OpenIddictServerEvents+ProcessSignInContext, OpenIddict.Server, Version=4.0.0.0, Culture=neutral, PublicKeyToken=35a561290d20de2f]]. 2023-03-06 10:35:05.294 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessSignInContext was marked as handled by OpenIddict.Server.OpenIddictServerHandlers+Authentication+ApplyAuthorizationResponse1[[OpenIddict.Server.OpenIddictServerEvents+ProcessSignInContext, OpenIddict.Server, Version=4.0.0.0, Culture=neutral, PublicKeyToken=35a561290d20de2f]]. 2023-03-06 10:35:05.294 +01:00 [VRB] After executing action result Microsoft.AspNetCore.Mvc.SignInResult. 2023-03-06 10:35:05.294 +01:00 [VRB] Result Filter: Before executing OnResultExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 2023-03-06 10:35:05.294 +01:00 [VRB] Result Filter: After executing OnResultExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 2023-03-06 10:35:05.294 +01:00 [VRB] Resource Filter: Before executing OnResourceExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 2023-03-06 10:35:05.294 +01:00 [VRB] Resource Filter: After executing OnResourceExecuted on filter Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter. 2023-03-06 10:35:05.294 +01:00 [INF] Executed action Volo.Abp.OpenIddict.Controllers.AuthorizeController.HandleAsync (Volo.Abp.OpenIddict.AspNetCore) in 153.1207ms 2023-03-06 10:35:05.294 +01:00 [INF] Executed endpoint 'Volo.Abp.OpenIddict.Controllers.AuthorizeController.HandleAsync (Volo.Abp.OpenIddict.AspNetCore)' 2023-03-06 10:35:05.294 +01:00 [DBG] DetectChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] DetectChanges completed for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] DetectChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] DetectChanges completed for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] SaveChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] DetectChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] DetectChanges completed for 'ChecklistDbContext'. 2023-03-06 10:35:05.294 +01:00 [DBG] SaveChanges completed for 'ChecklistDbContext' with 0 entities written to the database. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges completed for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges completed for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] SaveChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges completed for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] SaveChanges completed for 'OpenIddictProDbContext' with 0 entities written to the database. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges completed for 'ChecklistDbContext'. 2023-03-06 10:35:05.295 +01:00 [DBG] DetectChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges completed for 'ChecklistDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] SaveChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges starting for 'ChecklistDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges completed for 'ChecklistDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] SaveChanges completed for 'ChecklistDbContext' with 0 entities written to the database. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges completed for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges completed for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] SaveChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges starting for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] DetectChanges completed for 'OpenIddictProDbContext'. 2023-03-06 10:35:05.296 +01:00 [DBG] SaveChanges completed for 'OpenIddictProDbContext' with 0 entities written to the database. 2023-03-06 10:35:05.296 +01:00 [DBG] 'OpenIddictProDbContext' disposed. 2023-03-06 10:35:05.296 +01:00 [DBG] Disposing connection to database 'ChecklistBlazor' on server 'localhost'. 2023-03-06 10:35:05.296 +01:00 [DBG] Disposed connection to database '' on server '' (0ms). 2023-03-06 10:35:05.296 +01:00 [DBG] 'ChecklistDbContext' disposed. 2023-03-06 10:35:05.296 +01:00 [DBG] Disposing connection to database 'ChecklistBlazor' on server 'localhost'. 2023-03-06 10:35:05.296 +01:00 [DBG] Disposed connection to database '' on server '' (0ms). 2023-03-06 10:35:05.297 +01:00 [DBG] Connection ID "18158513712053354573" disconnecting. 2023-03-06 10:35:05.297 +01:00 [INF] Request finished HTTP/2 GET https://localhost:44325/connect/authorize?client_id=Checklist_Blazor&redirect_uri=https%3A%2F%2Flocalhost%3A44374%2Fauthentication%2Flogin-callback&response_type=code&scope=openid%20profile%20Checklist%20roles%20email%20phone&state=557c3358d46f43aabc92583e355cee5d&code_challenge=0QsutV1yk838XT5rzNW5mwn1s5VBCMGwCFZCIIVtNrU&code_challenge_method=S256&response_mode=query - - - 302 - - 173.9579ms

2023-03-06 10:35:14.015 +01:00 [INF] Request starting HTTP/2 GET https://localhost:44325/.well-known/openid-configuration - - 2023-03-06 10:35:14.016 +01:00 [VRB] All hosts are allowed. 2023-03-06 10:35:14.016 +01:00 [DBG] The request path /.well-known/openid-configuration does not match a supported file type 2023-03-06 10:35:14.016 +01:00 [DBG] No candidates found for the request path '/.well-known/openid-configuration' 2023-03-06 10:35:14.016 +01:00 [DBG] Request did not match any endpoints 2023-03-06 10:35:14.016 +01:00 [DBG] The request has an origin header: 'https://localhost:44374'. 2023-03-06 10:35:14.016 +01:00 [INF] CORS policy execution successful. 2023-03-06 10:35:14.016 +01:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. 2023-03-06 10:35:14.016 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. 2023-03-06 10:35:14.016 +01:00 [INF] The request URI matched a server endpoint: "Configuration". 2023-03-06 10:35:14.016 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. 2023-03-06 10:35:14.016 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by Volo.Abp.Account.Web.Pages.Account.OpenIddictImpersonateInferEndpointType. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ExtractConfigurationRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ExtractGetRequest1[[OpenIddict.Server.OpenIddictServerEvents+ExtractConfigurationRequestContext, OpenIddict.Server, Version=4.0.0.0, Culture=neutral, PublicKeyToken=35a561290d20de2f]]. 2023-03-06 10:35:14.017 +01:00 [INF] The configuration request was successfully extracted: {}. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+ExtractConfigurationRequest. 2023-03-06 10:35:14.017 +01:00 [INF] The configuration request was successfully validated. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+ValidateConfigurationRequest. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachIssuer. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachEndpoints. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachGrantTypes. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachResponseModes. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachResponseTypes. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachClientAuthenticationMethods. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachCodeChallengeMethods. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachScopes. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachClaims. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachSubjectTypes. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachSigningAlgorithms. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+HandleConfigurationRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+AttachAdditionalMetadata. 2023-03-06 10:35:14.017 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+Discovery+HandleConfigurationRequest. 2023-03-06 10:35:14.018 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ApplyConfigurationResponseContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+AttachHttpResponseCode1[[OpenIddict.Server.OpenIddictServerEvents+ApplyConfigurationResponseContext, OpenIddict.Server, Version=4.0.0.0, Culture=neutral, PublicKeyToken=35a561290d20de2f]]. 2023-03-06 10:35:14.018 +01:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ApplyConfigurationResponseContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+AttachWwwAuthenticateHeader`1[[OpenIddict.Server.OpenIddictServerEvents+ApplyConfigurationResponseContext, OpenIddict.Server, Version=4.0.0.0, Culture=neutral, PublicKeyToken=35a561290d20de2f]]. 2023-03-06 10:35:14.018 +01:00 [INF] The response was successfully returned as a JSON document: {

Showing 1 to 3 of 3 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11