mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-18 05:52:07 +02:00
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:
parent
aa50d50283
commit
5ee733c06c
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue