We're getting this exception:
Exception - System.NotSupportedException The type 'System.Object' is not a supported dictionary key using converter of type 'System.Text.Json.Serialization.Converters.DefaultObjectConverter'. Path: $.Data. The type 'System.Object' is not a supported dictionary key using converter of type 'System.Text.Json.Serialization.Converters.DefaultObjectConverter'.
Endpoint: POST /Abp/MultiTenancy/TenantSwitchModal
Can you assist with why we are getting this?
Some, but there is no pattern to which ones are and aren't
Hey
We're experiencing an issue with our emails, we have a service registered like this:
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IWelcomeEmailService))]
public class WelcomeEmailService : IWelcomeEmailService, ITransientDependency
public interface IWelcomeEmailService
{
Task SendWelcomeEmailAsync(string password, string userName, string email, string tenantName);
}
in which we have a method that uses the template renderer and email service. Debugging the service works just fine, but once we launch the app to our infrastructure there are some emails that we don't receive, we added the normal ILogger to find more about the root cause but we don't get logs from that specific service.