Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/administration/postgresql/database_load_balancing.md')
-rw-r--r--doc/administration/postgresql/database_load_balancing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/administration/postgresql/database_load_balancing.md b/doc/administration/postgresql/database_load_balancing.md
index f8b6be1fb21..d640dbe9341 100644
--- a/doc/administration/postgresql/database_load_balancing.md
+++ b/doc/administration/postgresql/database_load_balancing.md
@@ -182,9 +182,9 @@ To configure these options with a hosts list, use the following example:
```ruby
gitlab_rails['db_load_balancing'] = {
- 'hosts' => ['primary.example.com', 'secondary1.example.com', 'secondary2.example.com']
- 'max_replication_difference' => 16777216 # 16 MB
- 'max_replication_lag_time' => 30
+ 'hosts' => ['primary.example.com', 'secondary1.example.com', 'secondary2.example.com'],
+ 'max_replication_difference' => 16777216, # 16 MB
+ 'max_replication_lag_time' => 30,
'replica_check_interval' => 30
}
```