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 6779469 commit 4f92bb2Copy full SHA for 4f92bb2
frameworks/Python/litestar/app.py
@@ -37,10 +37,10 @@ def get_num_queries(queries):
37
38
async def setup_database():
39
return await asyncpg.create_pool(
40
- user=os.getenv("PGUSER", "postgres"),
41
- password=os.getenv("PGPASS", "password"),
42
- database="postgres",
43
- host="localhost",
+ user=os.getenv("PGUSER", "benchmarkdbuser"),
+ password=os.getenv("PGPASS", "benchmarkdbpass"),
+ database="hello_world",
+ host="tfb-database",
44
port=5432,
45
min_size=MIN_POOL_SIZE,
46
max_size=MAX_POOL_SIZE,
0 commit comments