Skip to content

Commit 229ba3c

Browse files
committed
docs: final fix for mermaid participant naming
- Remove quotes from Backend (Upstream) participant for consistency - All participants now properly match throughout the diagram - Maintains line breaks to prevent text overflow
1 parent 5070722 commit 229ba3c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/docs/reference/global-timeouts.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ The following diagram shows how different timeouts apply throughout the request
3131
sequenceDiagram
3232
participant Client
3333
participant Pomerium
34-
participant "Backend (Upstream)"
34+
participant Backend (Upstream)
3535
Client->>Pomerium: HTTP Request (from client)
3636
Note over Client,Pomerium: Read Timeout starts when request begins
37-
Pomerium->>"Backend (Upstream)": Forward request to upstream<br/>(once request is fully received)
38-
Note over Pomerium,"Backend (Upstream)": Default Upstream Timeout starts<br/>after full request is received
39-
"Backend (Upstream)"-->>Pomerium: Upstream Response
37+
Pomerium->>Backend (Upstream): Forward request to upstream<br/>(once request is fully received)
38+
Note over Pomerium,Backend (Upstream): Default Upstream Timeout starts<br/>after full request is received
39+
Backend (Upstream)-->>Pomerium: Upstream Response
4040
Pomerium-->>Client: HTTP Response (to client)
4141
Note over Pomerium,Client: Write Timeout covers<br/>entire request+response stream
4242
Note right of Pomerium: Idle Timeout closes idle connections<br/>with no active requests

0 commit comments

Comments
 (0)