We have a existing project in Asp.net Core + Anglur with framework .net 8 and version 13.1.0. We are going to upgrade in .net 8 and version 13.2.0
I have downloaded the latest version 13.2.0 and .net 8 project with same name and merged.
After merge , When I run application, login page load. after login with admin without select tenant.
Dashboard page not load and return error message FeatureChecker can not get a feature value by name. TenantId is not set in the IAbpSession!
complete error message
Abp.AbpException: FeatureChecker can not get a feature value by name. TenantId is not set in the IAbpSession!
at Abp.Application.Features.FeatureChecker.GetValueAsync(String name)
at Abp.Application.Features.FeatureChecker.IsEnabledAsync(String featureName)
at Abp.Application.Features.FeatureCheckerExtensions.IsEnabledAsync(IFeatureChecker featureChecker, Boolean requiresAll, String[] featureNames)
at Abp.Authorization.PermissionManager.FilterSatisfiedPermissionsAsync(FeatureDependencyContext featureDependencyContextObject, IList1 unfilteredPermissions) at Abp.Authorization.PermissionManager.GetAllPermissionsAsync(Boolean tenancyFilter) at Abp.Authorization.Roles.AbpRoleManager
2.<>c__DisplayClass66_0.<<GetRolePermissionCacheItemAsync>b__0>d.MoveNext()
--- End of stack trace from previous location ---
at Abp.Runtime.Caching.TypedCacheWrapper2.<>c__DisplayClass21_0.<<GetAsync>b__0>d.MoveNext() --- End of stack trace from previous location --- at Abp.Runtime.Caching.AbpCacheBase
2.GetAsync(TKey key, Func2 factory) at Abp.Runtime.Caching.TypedCacheWrapper
2.GetAsync(TKey key, Func2 factory) at Abp.Authorization.Roles.AbpRoleManager
2.GetRolePermissionCacheItemAsync(Int32 roleId)
at Abp.Authorization.Roles.AbpRoleManager2.IsGrantedAsync(Int32 roleId, Permission permission) at Abp.Authorization.Users.AbpUserManager
2.IsGrantedAsync(Int64 userId, Permission permission)
at Abp.Authorization.Users.AbpUserManager2.IsGrantedAsync(Int64 userId, String permissionName) at Abp.Authorization.PermissionChecker
2.IsGrantedAsync(Int64 userId, String permissionName)
at Abp.Authorization.PermissionChecker`2.IsGrantedAsync(String permissionName)
at Abp.Web.Configuration.AbpUserConfigurationBuilder.GetUserAuthConfig()
at Abp.Web.Configuration.AbpUserConfigurationBuilder.GetAll()
at PeoplePro.Web.Controllers.MyAbpUserConfigurationController.GetAll() in C:\Users\Dev1\Downloads\PeoplePro13.2.0 .net8\PeoplePro...
Can you please suggest, What I have missed?
Thanks