Skip to content

Commit

Permalink
CORE-17485 - Reinstate removed properties during flow session refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoviana authored Oct 5, 2023
2 parents c071e61 + f1884b6 commit 5917fad
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,27 @@
"type": "object",
"default": {},
"properties": {
"messageResendWindow": {
"description": "The length of time in milliseconds that Corda waits before resending unacknowledged flow session messages.",
"type": "integer",
"minimum": 1000,
"maximum": 2147483647,
"default": 120000
},
"heartbeatTimeout": {
"description": "The length of time in milliseconds that Corda waits when no message has been received from a counterparty before causing the session to error. This should be set at least 2 times larger than session.messageResendWindow.",
"type": "integer",
"minimum": 1000,
"maximum": 2147483647,
"default": 1800000
},
"missingCounterpartyTimeout": {
"description": "The length of time in milliseconds to wait when the counterparty can't be found in a member lookup before causing the session to error",
"type": "integer",
"minimum": 1000,
"maximum": 2147483647,
"default": 300000
},
"timeout": {
"description": "The length of time in milliseconds that Corda waits when no message has been received from a counterparty before causing the session to error.",
"type": "integer",
Expand Down

0 comments on commit 5917fad

Please sign in to comment.