chore: force backend Docker cache bust for deploy
CI - Build & Test / Backend (.NET) (push) Successful in 33s
CI - Build & Test / Frontend (Vue/TS) (push) Failing after 8s
CI - Build & Test / Security Check (push) Successful in 3s

This commit is contained in:
2026-06-22 20:04:22 +02:00
parent df94ed3cd4
commit fe97d1aaf0
4 changed files with 3096 additions and 1989 deletions
+7 -2
View File
@@ -34,20 +34,25 @@ public class HealthController(IAgentRuntime runtime, HealthCheckService healthCh
runtimeDetail = ex.Message;
}
static IReadOnlyDictionary<string, object?> NormalizeData(IReadOnlyDictionary<string, object> source)
{
return source.ToDictionary(kvp => kvp.Key, kvp => (object?)kvp.Value);
}
var entries = report.Entries.ToDictionary(
e => e.Key,
e => new
{
status = e.Value.Status.ToString(),
description = e.Value.Description,
data = (IReadOnlyDictionary<string, object?>)e.Value.Data
data = NormalizeData(e.Value.Data)
});
entries["runtime"] = new
{
status = runtimeStatus,
description = runtimeDetail,
data = (IReadOnlyDictionary<string, object?>)new Dictionary<string, object?>()
data = new Dictionary<string, object?>() as IReadOnlyDictionary<string, object?>
};
var isHealthy = report.Status == HealthStatus.Healthy && runtimeStatus == "Online";