Pass normalized component paths to freshness checks

This commit is contained in:
udo
2026-07-17 23:00:17 +00:00
parent 1c78ea4f22
commit 075ce0bc07
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2210,7 +2210,7 @@ private:
now - cached_freshness->second.checked_at).count() >= 1000;
if(check_freshness)
{
stale = compiler_unit_needs_recompile(context, resolved, 0, can_serve_stale && read_request);
stale = compiler_unit_needs_recompile(context, resolved, 0, can_serve_stale && read_request, true);
worker.component_freshness[resolved] = { now, stale };
}
else