Skip to content

Commit e7f7723

Browse files
committed
fix: convert deployment pattern bold text to proper headings
Resolves markdownlint MD036 errors for deployment pattern sections.
1 parent c03a81f commit e7f7723

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@ def calculate(a: int, b: int, operation: str) -> int:
14381438

14391439
##### Deployment Patterns
14401440

1441-
**Pattern 1: Pure Stateless (Recommended)**
1441+
###### Pattern 1: Pure Stateless (Recommended)
14421442

14431443
```python
14441444
# Best for: Serverless, auto-scaling environments
@@ -1448,7 +1448,7 @@ mcp = FastMCP("MyServer", stateless_http=True, json_response=True)
14481448
# Load balancer doesn't need session affinity
14491449
```
14501450

1451-
**Pattern 2: Stateful with Sticky Sessions**
1451+
###### Pattern 2: Stateful with Sticky Sessions
14521452

14531453
```python
14541454
# Best for: When you need notifications but have load balancing
@@ -1458,7 +1458,7 @@ mcp = FastMCP("MyServer", stateless_http=False) # Default
14581458
# ALB/NGINX can route by header value to maintain session affinity
14591459
```
14601460

1461-
**Pattern 3: Hybrid Approach**
1461+
###### Pattern 3: Hybrid Approach
14621462

14631463
```python
14641464
# Deploy both modes side-by-side

0 commit comments

Comments
 (0)