From b3b51392abc00991a48004f94a8c8f82431a7241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Paula=20G=C3=B3mez?= <131492787+Apgomeznext@users.noreply.github.com> Date: Mon, 10 Feb 2025 17:38:37 -0500 Subject: [PATCH] docs: update docs/concepts/event-bus.rst Co-Authored-By: Sarina Canelake --- docs/concepts/event-bus.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/event-bus.rst b/docs/concepts/event-bus.rst index b3a27a30..f2f5b1cb 100644 --- a/docs/concepts/event-bus.rst +++ b/docs/concepts/event-bus.rst @@ -22,7 +22,7 @@ The :term:`Event Bus` can help us achieve loose coupling between services, repla * **Eliminate Blocking, Synchronous Requests**: reduce site outages when services become overloaded with requests by replacing synchronous calls with asynchronous communication. * **Eliminate Expensive, Delayed, Batch Synchronization**: replace expensive batch processing with near real-time data updates. -* **Reduce the Need for Plugins**: reduce the computational load for plugins that don't need to run in the same process by allowing cross-service communication of lifecycle events. +* **Reduce the need for Plugins**: reduce the computational load for plugins that don't need to run in the same process by allowing cross-service communication of lifecycle events. How Does the Open edX Event Bus Work? ***************************************