Hi,
We will fix it. https://github.com/abpframework/abp/issues/21377
you can use this way as a temporary Solution
public static bool IsOpenIddictBuilderConfigured = false;
public override void PreConfigureServices(ServiceConfigurationContext context)
{
var hostingEnvironment = context.Services.GetHostingEnvironment();
var configuration = context.Services.GetConfiguration();
PreConfigure<OpenIddictBuilder>(builder =>
{
if (!IsOpenIddictBuilderConfigured)
{
builder.AddValidation(options =>
{
options.AddAudiences("Qa");
options.UseLocalServer();
options.UseAspNetCore();
});
IsOpenIddictBuilderConfigured = true;
}
})
}
Hi,
Yes, the IMultiTenant
interface is always needed for multi-tenant entities.
if there is no IMultiTenant
, ABP will use it as a host entity
Hi,
So I think this http status code 0 error is not related to the db connection being temporarily interrupted :(
Make sense, but I didn't see any error message in logs about http code 0
Hi,
okay, i will check it and get back to you.
Hi,
Cannot resolve parameter 'Volo.Abp.AuditLogging.IAuditLogRepository auditLogRepository' of constructor 'Void .ctor(Volo.Abp.AuditLogging.IAuditLogRepository, Volo.Abp.Uow.IUnitOfWorkManager,
It seems that the audit module dependencies are missing. you can add Volo.Abp.AuditLogging.EntityframeworkCore
module or remove all Audit logger module packages.
Hi
https://us05web.zoom.us/j/5929668302?pwd=UXl2M2RUeG5PazVSY2ZCOW1NMUxtZz09
Hi,
Sorry, should be OnRedirectToIdentityProvider
method.
HI,
Sorry for being late.
Unfortunately, we have no plan to provide this module.
Hi,
You can try to use Android emulator to debug it.