hi
using (CurrentTenant.Change(tenantId)) only works in the using scope. In the ChangePassword page, CurrentTenant will be determined via default rules: https://abp.io/docs/latest/framework/architecture/multi-tenancy#determining-the-current-tenant
Thanks.
hi
What is your UI page?
The feature does not works for multiple tabs I have tested it.
Can you share details? What are steps to reproduce?
Thanks.
hi
Can you try --set controller.config.enable-underscores-in-headers="true"?
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
helm upgrade --install --version=4.0.19 ingress-nginx ingress-nginx/ingress-nginx --set controller.config.enable-underscores-in-headers="true"
hi
Thanks. Please share the test project and steps to reproduce the problem.
👍
hi
Can you use a new template project to reproduce your current problem and share it?
liming.ma@volosoft.com
Thanks
hi
Can you share your job create code?
And you can consider create job when the UOW is completed.
YourUnitOfWork.OnCompleted(() =>
{
//create job
});
Thanks.
hi
Can you try setting RemoteRefreshUrl from https to http in the myproject-administration project that is deployed to the Kubernetes environment?
PostConfigure<AbpClaimsPrincipalFactoryOptions>(options =>
{
if (!string.IsNullOrEmpty(options.RemoteRefreshUrl))
{
options.RemoteRefreshUrl =
options.RemoteRefreshUrl.Replace("https://", "http://", StringComparison.OrdinalIgnoreCase);
}
});
The default value of RemoteRefreshUrl is the same as AuthServer:Authority. What is its value in your environment?
Thanks.
hi
it presumably redirects the new user to reset their password. What happens, however, is that the user is kicked back to the login page repeatedly.
If you want to solve this problem, you can try to add:
options.Conventions.AllowAnonymousToAreaPage("Account", "/ChangePassword");
Thanks.