We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c9430e + 1106e78 commit 574a549Copy full SHA for 574a549
.github/workflows/prod.yml
@@ -7,7 +7,6 @@ on:
7
- released
8
- prereleased
9
10
-
11
jobs:
12
build:
13
outputs:
app/database.py
@@ -14,7 +14,8 @@
14
create_database(DATABASE_URI)
15
16
17
-engine = create_engine(DATABASE_URI, pool_pre_ping=True)
+engine = create_engine(DATABASE_URI, pool_pre_ping=True,
18
+ pool_size=10, max_overflow=20)
19
20
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
21
0 commit comments