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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Chandler <wchandler@gitlab.com>2022-05-31 18:35:41 +0300
committerWill Chandler <wchandler@gitlab.com>2022-05-31 18:35:41 +0300
commite3aa6272e47af528b7599f93db2b02c76c55718e (patch)
tree9ed957b07a683249c5de58e3217085f28fb10f78
parent0e1626567a026c1b6cbd34e9ece8b102b99f85a4 (diff)
parenta326bfb395f7835ee68e6d24d3e2e90ce9e62cb1 (diff)
Merge branch 'pks-postgres-with-praefect-flakiness' into 'master'
ci: Hopefully decrease flakiness in `test-with-praefect` See merge request gitlab-org/gitaly!4583
-rw-r--r--.gitlab-ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 093ca084f..6f832a963 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -81,7 +81,9 @@ include:
- *cache_gems_configuration
- *cache_go_configuration
services:
- - postgres:${POSTGRES_VERSION}
+ - name: postgres:${POSTGRES_VERSION}
+ alias: postgres
+ command: ["postgres", "-c", "max_connections=500"]
variables: &postgres_variables
PGHOST: postgres
PGPORT: 5432
@@ -205,7 +207,9 @@ test:coverage:
test:pgbouncer:
<<: *test_definition
services:
- - postgres:${POSTGRES_VERSION}
+ - name: postgres:${POSTGRES_VERSION}
+ alias: postgres
+ command: ["postgres", "-c", "max_connections=500"]
- name: bitnami/pgbouncer:${PGBOUNCER_VERSION}
alias: pgbouncer
variables: