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.
Yes, AutoFac will support more advanced features.
Thanks.
hi
Your project doesn't use IDataSeeder when the app starts.
IDataSeedContributor can only be called when IDataSeeder is used.
You can inject your LaboratoryServiceDataSeeder into LaboratoryServiceDataSeeder to use it, and remove the IDataSeedContributor from it.
The microservice design differs slightly from a regular application.
https://abp.io/docs/latest/framework/infrastructure/data-seeding#idataseeder
Thanks.
hi
We enhanced it in the next 9.3.x version
You can override the method to change it now.
See
https://abp.io/support/questions/10057/LastModification-fields-not-updated-when-changing-one-to-many-relationship#answer-3a1d5bfa-d803-667e-e95a-7f8900a6abc8 https://github.com/abpframework/abp/pull/24104
Thanks