Fix temporary ache disable

This commit is contained in:
2025-08-03 15:25:01 -06:00
parent 0eadd6e217
commit e456913233
5 changed files with 5 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ namespace Core.Thalos.Provider.Providers.Onboarding
var cacheKey = CacheKeyHelper.GenerateCacheKey(this, "GetUserById", _id);
var cachedData = await cacheProvider.GetAsync<UserAdapter>(cacheKey);
//if (cachedData is not null) { return cachedData; }
if (cachedData is not null) { return cachedData; }
var user = await repository.FindByIdAsync(_id);