Skip to content

Commit

Permalink
Refactor database configuration to update connection pool minimum size
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Oct 27, 2024
1 parent a4656b9 commit 6a237fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integrations/config/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"port": os.getenv("POSTGRES_DATABASE_PORT"),
"connection_pooling_enabled": True,
"connection_pooling_max_size": 10,
"connection_pooling_min_size": None,
"connection_pooling_min_size": 2,
"prefix": "",
"log_queries": True,
"propagate": False,
Expand Down

0 comments on commit 6a237fa

Please sign in to comment.