From 92f310d07ac6eafd13af4354b92e94931d48077a Mon Sep 17 00:00:00 2001
From: Alessio Caiazza <acaiazza@gitlab.com>
Date: Tue, 6 Feb 2024 15:18:00 +0100
Subject: [PATCH] Remove references to DB selective replica

---
 doc/architecture/blueprints/cells/application-deployment.md | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/doc/architecture/blueprints/cells/application-deployment.md b/doc/architecture/blueprints/cells/application-deployment.md
index e941940a7af0a..8af7051f06d81 100644
--- a/doc/architecture/blueprints/cells/application-deployment.md
+++ b/doc/architecture/blueprints/cells/application-deployment.md
@@ -42,13 +42,12 @@ User ==> R
 R ==> Primary
 R ==> Secondary
 
-Primary --> Secondary : "DB selective replica"
-Secondary --> Primary : "internal API"
+Secondary --> Primary : "Internal API"
 
 @enduml
 ```
 
-As we can see from the diagram, users interact with the system through the router only. Cells communicate with the Primary Cell using internal API calls and have a local copy of all the database rows necessary to operate.
+As we can see from the diagram, users interact with the system through the router only. Secondary Cells communicate with the Primary Cell using internal API and have a local copy of all the database rows necessary to operate.
 
 It is important to note that even if a Secondary Cell supports GitLab Geo out of the box, we will not be able to provide this feature to our users until the Router supports it.
 
-- 
GitLab