Skip to content

Commit 0b12cb7

Browse files
committed
Added description for 'sqlalchemy_pooling' field in GlobalConfig
1 parent c8e6caa commit 0b12cb7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/murfey/util/config.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,14 @@ class GlobalConfig(BaseModel):
500500
"This is typically a YAML file."
501501
),
502502
)
503-
sqlalchemy_pooling: bool = True
503+
sqlalchemy_pooling: bool = Field(
504+
default=True,
505+
description=(
506+
"Toggles connection pooling functionality in the SQL database. If 'True', "
507+
"clients will connect to the database using an existing pool of connections "
508+
"instead of creating a new one every time."
509+
),
510+
)
504511
crypto_key: str
505512

506513
# RabbitMQ settings

0 commit comments

Comments
 (0)