Skip to content

Commit 893699b

Browse files
committed
more
1 parent 1094256 commit 893699b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/app/database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
engine = create_engine(
66
config.DATABASE_URL,
7-
pool_size=10,
8-
max_overflow=20,
7+
pool_size=20,
8+
max_overflow=40,
99
pool_timeout=30, # seconds
1010
pool_recycle=1800 # seconds
1111
)

frontend/src/scenes/frame/panels/Scenes/ExpandedScene.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function ExpandedScene({ frameId, sceneId }: ExpandedSceneProps) {
2525
<div className="py-2">
2626
{fieldCount === 0 ? (
2727
<div className="space-y-2">
28-
<div>This scene does not export publicly controllable state. Use the "State" panel to configure.</div>
28+
<div>This scene does not export publicly controllable state.</div>
2929
<Button onClick={submitStateChanges} color={sceneId !== currentSceneId ? 'primary' : 'secondary'}>
3030
Activate scene
3131
</Button>

0 commit comments

Comments
 (0)