Skip to content

Commit

Permalink
πŸ‘Œ IMPROVE: add broker_parameters to config schema (#4785)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Mar 1, 2021
1 parent c07e3ef commit 6044d81
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions aiida/manage/configuration/schema/config-v5.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,21 @@
"type": "string",
"default": ""
},
"broker_parameters": {
"description": "RabbitMQ arguments that will be encoded as query parameters",
"type": "object",
"default": {
"heartbeat": 600
},
"properties": {
"heartbeat": {
"description": "After how many seconds the peer TCP connection should be considered unreachable",
"type": "integer",
"default": 600,
"minimum": 0
}
}
},
"default_user_email": {
"type": [
"string",
Expand Down

0 comments on commit 6044d81

Please sign in to comment.