Skip to content

Commit f2a3f45

Browse files
Merge pull request #1928 from rocketstack-matt/fix/advent-of-calm-day9-summary-to-description
fix(advent-of-calm): change 'summary' to 'description' in Day 9 flow transitions
2 parents 91781f4 + 2362cab commit f2a3f45

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

advent-of-calm/day-9.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Flows consist of:
1818
- **transitions:** Ordered steps referencing relationships
1919
- `relationship-unique-id`: Which connection is used
2020
- `sequence-number`: Order in the flow (1, 2, 3...)
21-
- `summary`: What happens in this step
21+
- `description`: What happens in this step
2222
- `direction`: `source-to-destination` or `destination-to-source`
2323

2424
### 2. Map Your E-Commerce Order Flow
@@ -39,9 +39,9 @@ Create a flow with:
3939
- name: "Customer Order Processing"
4040
- description: "End-to-end flow from customer placing an order to payment confirmation"
4141
- transitions array referencing the ACTUAL relationship unique-ids from my architecture:
42-
1. The customer-to-gateway interacts relationship, sequence-number: 1, summary: "Customer submits order via web interface", direction: "source-to-destination"
43-
2. The gateway-to-order-service connects relationship, sequence-number: 2, summary: "API Gateway routes order to Order Service", direction: "source-to-destination"
44-
3. The order-service-to-payment-service connects relationship, sequence-number: 3, summary: "Order Service initiates payment processing", direction: "source-to-destination"
42+
1. The customer-to-gateway interacts relationship, sequence-number: 1, description: "Customer submits order via web interface", direction: "source-to-destination"
43+
2. The gateway-to-order-service connects relationship, sequence-number: 2, description: "API Gateway routes order to Order Service", direction: "source-to-destination"
44+
3. The order-service-to-payment-service connects relationship, sequence-number: 3, description: "Order Service initiates payment processing", direction: "source-to-destination"
4545
4646
Look up the exact relationship unique-ids from my relationships array and use those.
4747
```
@@ -198,7 +198,7 @@ git tag | grep -q "day-9"
198198
- Use bidirectional transitions for request-response patterns
199199
- Flows can reference the same relationships multiple times
200200
- Add flow-specific controls for critical business processes
201-
- Use meaningful summaries that describe business intent, not just technical details
201+
- Use meaningful descriptions that describe business intent, not just technical details
202202

203203
## Next Steps
204204
Tomorrow (Day 10) you'll link your architecture to Architecture Decision Records (ADRs)!

0 commit comments

Comments
 (0)