You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In VaultConfig's GoString() method it references *c.LeaseRenewalThreshhold, but c can be nil and, if so, this panics. It should use a FloatGoString() method (similar to the others in config/convert.go) to get the value with the check for nil.
The text was updated successfully, but these errors were encountered:
In VaultConfig's GoString() method it references
*c.LeaseRenewalThreshhold
, butc
can benil
and, if so, this panics. It should use aFloatGoString()
method (similar to the others in config/convert.go) to get the value with the check for nil.The text was updated successfully, but these errors were encountered: