hi
I created a new MS project for troubleshooting.
options.AutoEventSelectors.AddAll(); will have a problem. I tested the code below, and it works.
We will fix AddAll problem in https://github.com/abpframework/abp/pull/22471
Configure<AbpDistributedEntityEventOptions>(options =>
{
options.AutoEventSelectors.Add<DirectoryDescriptor>();
options.AutoEventSelectors.Add<FileDescriptor>();
});
hi
Can you try to change the following properties of AbpEventBusBoxesOptions and try again?
You can configure AbpEventBusBoxesOptions in all of the microservices.
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpEventBusBoxesOptions>(options =>
{
options.InboxWaitingEventMaxCount = 100; //Default 1000
options.OutboxWaitingEventMaxCount = 100; //Default 1000
options.BatchPublishOutboxEvents = false; //Default true
});
}
If you get new exceptions, you can share them here.
Thanks.
hi
I can see the session all exist in the cache.
Can you share your revoke code?
Are you sue the sessions are revoked by IdentitySessionManager?
You can enable the EF Core debug to see the revoke SQL. see https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.
hi
There is no Debug log in your logs.txt file.
What is your Serilog Configuration in your LitmusHttpApiHostModule?
See https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
hi
You can download the account pro source code to check the OnGetExternalLoginCallbackAsync method of LoginModel(account/src/Volo.Abp.Account.Pro.Public.Web/Pages/Account/Login.cshtml.cs)
Then override the OnGetExternalLoginCallbackAsync method to implement your needs.
https://abp.io/support/questions/632/How-can-I-download-the-source-code-of-the-framework-Angular-packages-theme-and-pro-modules
https://abp.io/support/questions/160/How-to-customize-an-ABP-project
Thanks.
hi
You can override the OnGetExternalLoginCallbackAsync method of LoginModel
Download the account pro module to check the implementation.
Thanks.
Thanks JimmyLiew.
I have confirmed. 0.9.25 has no problem 👍
Updated: https://abp.io/support/questions/8990/unregistered-version-of-Eziriz%27s-NET-Reactor?CurrentPage=1#answer-3a18ca49-409a-d43e-0df5-8df4b150c93d
hi
You can share it by https://wetransfer.com/
Add a password to your zip file.
hi
Can you share your project with liming.ma@volosoft.com
I will download and check it.
Thanks.
hi JimmyLiew
Have you rebuilt and run your app after clearing the nuget cache?
dotnet nuget locals all --clear