Fix mermaid cycle error: rename CLI node to CLIEP to avoid conflict with subgraph name

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 <noreply@anthropic.com>
This commit is contained in:
Ernad Husremovic 2025-08-30 16:59:42 +02:00
parent aa50d50283
commit 5ee733c06c

View file

@ -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