Skip to content

Commit 22b72f3

Browse files
committed
Added description for the 'feedback_queue' field in the GlobalConfig
1 parent 01f9532 commit 22b72f3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/murfey/util/config.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,15 @@ class GlobalConfig(BaseModel):
517517
)
518518

519519
# RabbitMQ settings
520-
feedback_queue: str = "murfey_feedback"
520+
feedback_queue: str = Field(
521+
default="murfey_feedback",
522+
description=(
523+
"The name of the RabbitMQ queue that will receive instructions and "
524+
"the results of processing jobs on behalf of Murfey. This queue can be "
525+
"by multiple server instances, which is why it's stored here instead of "
526+
"in the machine configuration."
527+
),
528+
)
521529

522530
# Server authentication settings
523531
auth_type: Literal["password", "cookie"] = "password"

0 commit comments

Comments
 (0)