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 01f9532 commit 22b72f3Copy full SHA for 22b72f3
src/murfey/util/config.py
@@ -517,7 +517,15 @@ class GlobalConfig(BaseModel):
517
)
518
519
# RabbitMQ settings
520
- feedback_queue: str = "murfey_feedback"
+ 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
+ )
529
530
# Server authentication settings
531
auth_type: Literal["password", "cookie"] = "password"
0 commit comments