Skip to content

Commit b71a67d

Browse files
HumanBean17claude
andcommitted
fix(installer): add missing verbose/quiet args to run_build_ast_graph call
Fixes CI failure after commit 39b5e0a. The run_build_ast_graph() function signature requires: - source_root (required) - kuzu_path (required) - verbose (required) ← was missing - quiet (optional) - env (optional) The call in installer.py was missing verbose and quiet args, causing: "internal error: run_build_ast_graph() missing 1 required keyword-only argument: 'verbose'" Added verbose=not quiet and quiet=quiet to match the pattern used in cli.py. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 39b5e0a commit b71a67d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

java_codebase_rag/installer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,8 @@ def run_init_if_needed(
796796
g = run_build_ast_graph(
797797
source_root=cfg.source_root,
798798
kuzu_path=cfg.kuzu_path,
799+
verbose=not quiet,
800+
quiet=quiet,
799801
env=env,
800802
)
801803
if g.returncode != 0:

0 commit comments

Comments
 (0)