Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-18532: Explicit Crypto Retry Settings #1430

Merged
merged 3 commits into from
Jan 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
"properties": {
"default": {
"type": "integer",
"default": 3
"default": 3,
"minimum": 0,
"maximum": 10
}
}
},
Expand Down Expand Up @@ -82,7 +84,9 @@
"maxAttempts": {
"description": "Maximum number of attempts",
"type": "integer",
"default": 3
"default": 3,
"minimum": 0,
"maximum": 10
},
"attemptTimeoutMills": {
"description": "Wait period in milliseconds between attempts, should be reasonably large as some operations may be long, e.g. RSA key generation by the SOFT HSM may take a few seconds",
Expand All @@ -93,7 +97,7 @@
"additionalProperties": false
},
"wrappingKeys": {
"description" : "Key derivation parameters for wrapping keys supplied in config",
"description": "Key derivation parameters for wrapping keys supplied in config",
"type": "array",
"items": {
"type": "object",
Expand Down