File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ HEALTHCHECK_RETRIES=10
22
22
HEALTHCHECK_START_PERIOD = 10s
23
23
HEALTHCHECK_FILE_INTERVAL = 60s
24
24
HEALTHCHECK_FILE_TIMEOUT = 10s
25
- HEALTHCHECK_FILE_RETRIES = 1
26
- HEALTHCHECK_FILE_START_PERIOD = 180s
25
+ HEALTHCHECK_FILE_RETRIES = 3
26
+ HEALTHCHECK_FILE_START_PERIOD = 600s
27
27
# Caution: Raising max connections of postgres increases CPU and RAM usage
28
28
# see https://github.com/getsentry/self-hosted/pull/2740 for more information
29
29
POSTGRES_MAX_CONNECTIONS = 100
Original file line number Diff line number Diff line change @@ -142,6 +142,17 @@ runs:
142
142
volumes : |
143
143
sentry-kafka
144
144
145
+ - name : Setup swapfile
146
+ shell : bash
147
+ if : matrix.os == 'ubuntu-24.04'
148
+ run : |
149
+ sudo fallocate -l 16G /swapfile
150
+ sudo chmod 600 /swapfile
151
+ sudo mkswap /swapfile
152
+ sudo swapon /swapfile
153
+ sudo swapon --show
154
+ free -h
155
+
145
156
- name : Integration Test
146
157
shell : bash
147
158
run : |
You can’t perform that action at this time.
0 commit comments