hi
Can you try to set AbortOnConnectFail to false?
Please update your MyBankStoreAuthServerModule file
Change
var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]!);
to
var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]!, options => options.AbortOnConnectFail = false);
Also PostConfigure<RedisCacheOptions>
public override void ConfigureServices(ServiceConfigurationContext context)
{
PostConfigure<RedisCacheOptions>(options =>
{
options.ConfigurationOptions ??= new ConfigurationOptions();
options.ConfigurationOptions.AbortOnConnectFail = false;
});
}
Thanks.
hi
What is your use case? EventBus?
You can take look at this:https://abp.io/support/questions/3412/Kafka-subscribe-into-multiple-topics#answer-7b978c65-e340-67e9-dcd9-3a0508b832b4
Thanks.
hi
You need to create static proxy for DocumentService in your InvoiceService service and create InvoiceService proxy in your DocumentService
Can you share your Static Proxy code? You can also share your project source code.
liming.ma@volosoft.com
Thanks.
hi roberto.fiocchi
Can you create a new question? I will forward it to our Suite and Studio team.
Thanks.
hi
Can you confirm your Redis connection string is correct? Does your Redis server need a password?
You can check your appsettings.json file.
Thanks
hi
Your ticket has been refunded.
Thanks.
Great