From 5473a6db50e96a24fe13055ede5a54f710109562 Mon Sep 17 00:00:00 2001 From: Dhiraj-Birajdar Date: Fri, 5 Dec 2025 18:03:19 +0530 Subject: [PATCH] Fix broken CQRS link in saga README --- saga/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saga/README.md b/saga/README.md index d715f026af67..b559d3daddf3 100644 --- a/saga/README.md +++ b/saga/README.md @@ -193,7 +193,7 @@ Trade-offs: ## Related Java Design Patterns * [Event Sourcing](https://java-design-patterns.com/patterns/event-sourcing/): Used to capture state changes as a sequence of events, which can complement the Saga pattern by providing a history of state changes. -* [Command Query Responsibility Segregation (CQRS)](https://java-design-patterns.com/patterns/cqrs/): Can be used in conjunction with the Saga pattern to separate command and query responsibilities, improving scalability and fault tolerance. +* [Command Query Responsibility Segregation (CQRS)](https://java-design-patterns.com/patterns/command-query-responsibility-segregation/): Can be used in conjunction with the Saga pattern to separate command and query responsibilities, improving scalability and fault tolerance. ## References and Credits