Skip to content

Commit

Permalink
CORE-19908: Fix crypto schema to include default values for retrying (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
malachyb authored May 21, 2024
1 parent 992fbfe commit 4c03626
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"properties": {
"default": {
"type": "integer",
"default": 10000
"default": 60
}
}
},
Expand All @@ -29,7 +29,7 @@
"properties": {
"default": {
"type": "integer",
"default": 60
"default": 10000
}
}
}
Expand All @@ -44,6 +44,7 @@
"maxAttempts": {
"description": "The maximum attempts to process a message.",
"type": "object",
"default": {},
"properties": {
"default": {
"type": "integer",
Expand All @@ -56,6 +57,7 @@
"waitBetweenMills": {
"description": "The time between attempts in milliseconds. If the number of values specified is less than the number of attempts, the last item is repeated.",
"type": "object",
"default": {},
"properties": {
"default": {
"type": "array",
Expand Down

0 comments on commit 4c03626

Please sign in to comment.