fix: restore clock and validation contracts
ci / backend (push) Failing after 1s
ci / static (push) Failing after 7s
ci / backend (pull_request) Failing after 1s
ci / static (pull_request) Failing after 10s
Build & Test with Secrets / build (pull_request) Failing after 2s
ci / publish (pull_request) Has been cancelled
ci / frontend (pull_request) Has been cancelled
Build & Test with Secrets / security-scan (pull_request) Has been cancelled
Build & Test with Secrets / notification (pull_request) Has been cancelled
Build & Test with Secrets / frontend (pull_request) Has been cancelled
ci / publish (push) Has been cancelled
ci / frontend (push) Has been cancelled

This commit is contained in:
2026-08-06 13:39:25 +09:00
parent fed750f881
commit e0d58ac31d
5 changed files with 16 additions and 13 deletions
@@ -208,11 +208,11 @@ public class DashboardService : IDashboardService
a.Message)).ToList(),
HealthScore = healthScore,
RiskInsights = riskInsights,
LastUpdate = _clock.UtcNow.DateTime,
LastUpdate = _clock.UtcNow.UtcDateTime,
};
// Cache result
_cache[portfolioId] = (_clock.UtcNow, response);
_cache[portfolioId] = (_clock.UtcNow.UtcDateTime, response);
return response;
}