hi
The MultiTenancyMiddlewareErrorPageBuilder is used to handle inactive and non-existent tenants.
It will respond to an error page by default, you can change it if you want, eg: only output the error log and continue ASP NET Core's request pipeline.
Configure<AbpAspNetCoreMultiTenancyOptions>(options =>
{
options.MultiTenancyMiddlewareErrorPageBuilder = async (context, exception) =>
{
// Handle the exception.
// Return true to stop the pipeline, false to continue.
return true;
};
});
hi
You can add a cookies authentication to your HttpApi.Host project.
https://support.abp.io/QA/Questions/5733#answer-3a0db883-c466-1f48-be6b-ec834293db61
Thanks. I am checking right now.
hi
Refresh page will delete the tenant cookies as well.
hi
You can open a new question. Thanks.
Your question credits were refunded.
hi
This is a bug,We fixed it in new version.
hi
I want to know how to reproduce the issue on my local computer.
Thanks