hi
https://abp.io/docs/latest/framework/architecture/modularity/extending/customizing-application-modules-overriding-services?_redirected=B8ABF606AA1BDF5C629883DF1061649A#example-overriding-a-repository
hi
I understand your situation. Maybe other projects also execute background jobs, so your code is not applied to all projects.
You can try to add your code to Domain module.
What is the project of this error log? You can try to add your code to Domain module.
https://abp.io/support/questions/7699/Random-exception-after-switching-from-IdentityServer-to-OpenDict#answer-3a147d57-7267-7eaf-1d74-ba36bdfea929
Your code is no problem, that strange. Can you share a test project?
hi
The EfCoreIdentityUserRepository is in the Identity module, which is an open-source module.
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/EfCoreIdentityUserRepository.cs#L15
hi
You can try a deploy project to k8s to see if the same problem exists, I don't have much experience with k8s.
Can you share the application Logs.txt?
Maybe it has some other error messages.
Set log level to Debug
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
at Volo.Abp.OpenIddict.Tokens.AbpOpenIddictTokenStore.PruneAsync(DateTimeOffset threshold, CancellationToken cancellationToken)
at Volo.Abp.OpenIddict.Tokens.TokenCleanupService.CleanAsync()
Your custom AbxAbpOpenIddictTokenStore store is not take effected
Please share your module code.
Thanks
hi
Is it LocalRedirectPreserveMethod("/Payment/GatewaySelection?paymentRequestId=" + paymentRequest.Id); get 404 error?
Can you share the logs of 404 error and a test project?
Thanks
liming.ma@volosoft.com