Skip to content

Commit

Permalink
Make slow and error links relative for being included in another project
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Sep 25, 2024
1 parent 17ca694 commit 4f046b7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/flowchart/index.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Spark Error Flowchart: Note this uses mermaid.js which may take awhile to load.

```mermaid
graph TD
A[Start here] --> B[Slow Running Job]
C[I have an exception or error]
A --> C
click B "slow" "Slow"
click C "error" "Error"
flowchart LR
A[Start here] --> B[Slow Running Job]
C[I have an exception or error]
A --> C
click B "./slow"
click C "./error"
```

0 comments on commit 4f046b7

Please sign in to comment.