From a9ce57c4d045120095df61dd5296d51b8f27d471 Mon Sep 17 00:00:00 2001 From: Dhiraj Birajdar <114354331+Dhiraj-birajdar@users.noreply.github.com> Date: Tue, 2 Jun 2026 23:31:17 +0530 Subject: [PATCH] fix: Fix broken CQRS link in Saga README (#3409) Co-authored-by: Dhiraj-Birajdar --- saga/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saga/README.md b/saga/README.md index d715f026a..b559d3dad 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