mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-07 03:41:13 +01: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
|
|
```
|