From df80aca9cd4771d37626f0a183189f21a5ef6813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Tejero=20Cantero?= Date: Wed, 5 Aug 2026 10:23:22 +0200 Subject: [PATCH] :bug: Use app.system/system in the graph ingest helper develop renamed app.main/system to app.system/system and dropped the app.main require while this branch was away. Rebasing replays the old call, so clj-kondo reports an unresolved namespace and the ns will not load. --- backend/src/app/srepl/main.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/srepl/main.clj b/backend/src/app/srepl/main.clj index 6c71c23b6a..99a40dde80 100644 --- a/backend/src/app/srepl/main.clj +++ b/backend/src/app/srepl/main.clj @@ -432,7 +432,7 @@ - `:reset-db?` delete any existing db first (default true) - `:skip-stats?` skip post-ingest MATCH count queries (default false)" [file-id & opts] - (let [result (apply graph.ingest/ingest-file! main/system file-id opts)] + (let [result (apply graph.ingest/ingest-file! sys/system file-id opts)] (graph.report/print-ingest! result) result))