We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231d3f4 commit d38737cCopy full SHA for d38737c
server/run-tests.sh
@@ -9,6 +9,8 @@ export DATABASE_URL="postgresql://postgres:postgres@localhost:5432/postgres"
9
export SVIX_JWT_SECRET="test value"
10
export SVIX_LOG_LEVEL="info"
11
export SVIX_WHITELIST_SUBNETS="[127.0.0.1/32]"
12
+export SVIX_DB_POOL_MAX_SIZE="500"
13
+export SVIX_REDIS_POOL_MAX_SIZE="10000"
14
15
echo "*********** RUN 1 ***********"
16
SVIX_QUEUE_TYPE="redis" \
server/testing-docker-compose.yml
@@ -2,6 +2,7 @@ version: "3.7"
2
services:
3
postgres:
4
image: postgres:13.4
5
+ command: postgres -c 'max_connections=500'
6
volumes:
7
- "postgres-data:/var/lib/postgresql/data/"
8
environment:
0 commit comments