Activities of "jurec"

Abp: 4.2.1

Hi there,

The problem is that abp platform forces to use Redis in production mode. I belive this is a bug, or there is something else on that. Commenting lines are solved this issue for me (see the code below).

    private void ConfigureRedis(
        ServiceConfigurationContext context,
        IConfiguration configuration,
        IWebHostEnvironment hostingEnvironment)
    {
        if (!hostingEnvironment.IsDevelopment())
        {
            /*var redis = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]);
            context.Services
                .AddDataProtection()
                .PersistKeysToStackExchangeRedis(redis, "edelivery2-Protection-Keys");*/
        }
    }
Answer

Mehmet and bqabani

thank you both for your fast answers. Downgrading angular package @abp/ng.core to version 4.0.0. and clearing browser cache will do the trick. Issue is now temporary resolved.

With regards,

Jure

Answer

Newly created projects are not working

CLI: 4.0.1 Suite: 4.0.1 Frontend: Angular Db: MongoDb

After successfull compiling, migrating and seeding data into aplication everything is started correctly. Under login page i confirm my credentials into app, then app is hanging out.

Under investigation i have found error "loading discovery document TypeError: value is null" in my browser. Error is causing by call loadDiscoveryDocument method when try to get configuration.

Do i missing something in my angular enviroment?

With regards.

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