hi
This gap is too wide. It's not easy to upgrade fast.
Check the new microservices solution at https://abp.io/docs/latest/solution-templates/microservice.
You can create a latest microservices solution. Then migrate your old service into the new solution.
For your old services, the migration is straightforward. Please refer https://abp.io/docs/latest/release-info/migration-guides
Thanks.
hi @jayjack07
I will check and fix it in next 9.2 patch version.
Thanks.
Thanks for your solution 👍
ok, I will ask our angular team.
Thanks
Can you share the all related websites logs for the 500 error?
See https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems to enable debug logs and share the logs.txt files
Thanks.
hi
Can you try to always set https ?
app.Use(async (ctx, next) =>
{
ctx.Request.Scheme = "https";
await next();
});
If it's not working, please share the debug logs of AuthServer.
See https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
var loggerConfiguration = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.MinimumLevel.Override("OpenIddict", LogEventLevel.Verbose)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
hi
EF core does not allowed keys to be nullable.
This is an EF Core(SQL) limitation. You can't do this.
Thanks.