Compare commits

..

No commits in common. "9e47c344495de397c72093f1acc54d13704b637c" and "7acd7ec8fb56dc2b9ae00bd6ddfa7b2d5628c39e" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -2580,7 +2580,7 @@ namespace IRaCIS.Application.Services
var value = _provider.Get<string>(cacheKey).Value;
if (value == null)
{
_provider.Set(cacheKey, DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), TimeSpan.FromHours(5));
_provider.Set(cacheKey, DateTime.Now.ToString(), TimeSpan.FromHours(5));
// _cache.Set(cacheKey, DateTime.Now.ToString(), TimeSpan.FromHours(5));
}