/atlas page 500 error caused by a NameError: name '_cache_page' is not defined./atlas page loads without 500 errorRoot cause: _cache_page("atlas", page) was called but the function doesn't exist — should be _set_cached_page + return.
Already fixed on main: This was resolved by commit 50f38aa71 ("[UI] Fix /atlas 500 error and optimize performance [task:840112c6-224d-468b-b4a3-8d7446ea7793]") which:
_get_cached_page("atlas") check at line 48272return _cache_page("atlas", page) → _set_cached_page("atlas", page) + return pageknowledge_edges(edge_type) and knowledge_edges(created_at)Verification: curl http://localhost:8000/atlas → HTTP 200 ✓
Spec file on main: docs/planning/specs/840112c6_224_spec.md documents this fix.
_cache_page NameError fix already on main via 50f38aa71_get_cached_page("atlas") check and line 48491 has _set_cached_page("atlas", page)