open-vault/vault/diagnose/constants.go
Hridoy Roy d3034f2851
Diagnose Language Pass (#11909)
* save

* save

* save

* first round of the diagnose language pass

* capitalization

* first round of feedback

* fix bug in advise

* a few more nouns to verbs
2021-07-11 15:44:19 -07:00

14 lines
904 B
Go

package diagnose
const (
AutoLoadedLicenseValidatorError = "Autoloaded license could not be validated: "
AutoloadedLicenseValidationError = "Autoloaded license validation failed due to error: "
LicenseAutoloadingError = "License could not be autoloaded: "
StoredLicenseNoAutoloadingWarning = "Vault is using a stored license, which is deprecated! Vault should use autoloaded licenses instead."
NoStoredOrAutoloadedLicenseWarning = "No autoloaded or stored license could be detected. If the binary is not a pro/prem binary, this means Vault does not have access to a license at all."
LicenseExpiredError = "Autoloaded license is expired."
LicenseExpiryThresholdWarning = "Autoloaded license will expire "
LicenseTerminatedError = "Autoloaded license is terminated."
LicenseTerminationThresholdWarning = "Autoloaded license will be terminated "
)