Hi,
Please add offline_access to scope.
To get a refresh token, you must include the offline_access scope when you initiate an authentication request through the /authorize endpoint. Be sure to initiate Offline Access in your API. For more information, read API Settings.
https://auth0.com/docs/secure/tokens/refresh-tokens/get-refresh-tokens
Hi,
Can you share the environment.ts code?
Hi,
https://www.nuget.org/packages/SQLitePCLRaw.bundle_e_sqlite3
Can you try upgrading the SQLitePCLRaw.bundle_e_sqlite3 package to the latest version?
https://support.abp.io/QA/Questions/6769/runtime-error-after-upgrading-to-804#answer-3a110b51-8281-1463-4e25-fc4c42d757b2 : )
Hi,
You need to add a new migration file:
dotnet ef add migrations Upgrade_To_8.0.4
dotnet ef database update
Hi,
You can try add @addTagHelper *, Owl.reCAPTCHA to the _ViewImports.cshtml
Hi,
You can inject the ICurrentTenant and ICurrentUser
if(!_currentTenant.IsAvailable)
{
...host
}
Or
if(_currentTenant.TenantId == null)
{
...host
}
Microsoft.EntityFrameworkCore.InMemory, Version=7.0.1.0
Hi,
You need to upgrade all relevant packages.
You can check the Migration Guide
https://learn.microsoft.com/en-us/aspnet/core/migration/70-80?view=aspnetcore-8.0&tabs=visual-studio https://docs.abp.io/en/abp/8.0/Migration-Guides/Abp-8_0 https://docs.abp.io/en/commercial/latest/migration-guides/v8_0
Finally, with the aim of scaling the application, as it's multi-tenant, is there a possibility for each tenant to have its dedicated background jobs thread independent of other tenants?
Unfortunately, this cannot be done
Hi,
The Default BacgkroundJob uses Background worker to execute jobs.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs/Volo/Abp/BackgroundJobs/BackgroundJobWorker.cs#L42
The BackgroundJobWorker default 5 seconds to get jobs waiting to be executed
https://github.com/abpframework/abp/blob/f8185938d40aaef5fb05de010fc240cf1ec531ee/framework/src/Volo.Abp.BackgroundJobs/Volo/Abp/BackgroundJobs/AbpBackgroundJobWorkerOptions.cs#L9
ABP provides a simple implementation, you can consider Hangfire integration:
https://docs.abp.io/en/abp/latest/Background-Jobs-Hangfire