Activities of "maliming"

My test code

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

Answer

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

hi

Please share the code for MongoDBMigrationEventHandlerBase PendingMongoDbMigrationsChecker, PendingMongoDBMigrationsCheckerBase sub-classes

hi

You can only override the built-in service to debug it and find the time-consuming operations.

ok, How can I reproduce your problem?

hi

An error occurred using the connection to database 'Flo3BlazorDev-staging' on server 'tcp:xxxx.database.windows.net,1433'.[ERR] System.Threading.Tasks.TaskCanceledException: A task was canceled.

Please set the log level to Debug of your API website to see more logs.

https://abp.io/support/questions/7716/Admin-user-menu-not-showing-on-tiered-app-in-dev--production-and-logged-in-with-same-menu-issue-but-not-authenticated-in-production-Azure-deployment-slots#answer-3a146c3c-05eb-d49a-90e7-9e1f5f54b502

Thanks.

Showing 1051 to 1060 of 8483 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54