From 5ee733c06c9a8113e4e3fc04ef7a99c41bc0b970 Mon Sep 17 00:00:00 2001 From: Ernad Husremovic Date: Sat, 30 Aug 2025 16:59:42 +0200 Subject: [PATCH] Fix mermaid cycle error: rename CLI node to CLIEP to avoid conflict with subgraph name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The diagram had a cycle where node 'CLI' was inside subgraph 'CLI', creating: 'Setting CLI as parent of CLI would create a cycle' Fixed by renaming the node to 'CLIEP' (CLI Entrypoints) to avoid the naming conflict. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- odoo-bringout-oca-ocb-base/doc/ARCHITECTURE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/odoo-bringout-oca-ocb-base/doc/ARCHITECTURE.md b/odoo-bringout-oca-ocb-base/doc/ARCHITECTURE.md index 53a8dcab..c1f6bb96 100644 --- a/odoo-bringout-oca-ocb-base/doc/ARCHITECTURE.md +++ b/odoo-bringout-oca-ocb-base/doc/ARCHITECTURE.md @@ -6,7 +6,7 @@ This package provides the Odoo core runtime and the `base` addon. It sits at the flowchart LR subgraph CLI OBIN[`odoo-bin`] - CLI[CLI Entrypoints] + CLIEP[CLI Entrypoints] end subgraph Core CONF[Config Loader] @@ -35,7 +35,7 @@ flowchart LR IRCONF[ir.config_parameter] end - OBIN --> CLI --> CONF --> SRV --> REG + OBIN --> CLIEP --> CONF --> SRV --> REG SRV --> HTTP -->|routes| BaseControllers SRV --> CRON REG --> ORM --> PG