From b8765535267d47faf166ac45634688c5c7180afd Mon Sep 17 00:00:00 2001 From: Michael Webb Date: Thu, 19 Sep 2024 09:33:35 +0200 Subject: [PATCH] fix: swap Client A and Client B to match the diagram --- modules/ROOT/pages/subscriptions/scaling.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/subscriptions/scaling.adoc b/modules/ROOT/pages/subscriptions/scaling.adoc index 96bbbeaf..5b8f640b 100644 --- a/modules/ROOT/pages/subscriptions/scaling.adoc +++ b/modules/ROOT/pages/subscriptions/scaling.adoc @@ -18,8 +18,8 @@ However, when trying to scale horizontally by adding more GraphQL servers, you m image::subscriptions/diagram2.svg[title="Subscriptions with 2 servers"] -In this case, Client B is subscribed to one server. -However, when Client A triggers the mutation, it may query a different server. +In this case, Client A is subscribed to one server. +However, when Client B triggers the mutation, it may query a different server. The change happens successfully in the database, and any client connected to the same server receives the subscription event. However, Client A does **not** receive any update, as the server it's connected to does not get notified of any mutation.