mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
* pki health-check fails to read in int config values
- Go's default behavior when decoding numbers to an interface{} is to use a float64 type which parseutil.SafeParseIntRange does not handle.
- Switch to having the JSON decoder use json.Number which our parseutil library
properly handles.
* Add cl
4 lines
99 B
Plaintext
4 lines
99 B
Plaintext
```release-note:bug
|
|
cli/pki: Decode integer values properly in health-check configuration file
|
|
```
|