2017-02-16 18:16:06 +00:00
|
|
|
package consts
|
|
|
|
|
|
|
|
const (
|
2018-03-20 18:54:10 +00:00
|
|
|
// ExpirationRestoreWorkerCount specifies the number of workers to use while
|
2017-02-16 18:16:06 +00:00
|
|
|
// restoring leases into the expiration manager
|
|
|
|
ExpirationRestoreWorkerCount = 64
|
2018-08-22 18:37:40 +00:00
|
|
|
|
|
|
|
// NamespaceHeaderName is the header set to specify which namespace the
|
|
|
|
// request is indented for.
|
|
|
|
NamespaceHeaderName = "X-Vault-Namespace"
|
|
|
|
|
|
|
|
// AuthHeaderName is the name of the header containing the token.
|
|
|
|
AuthHeaderName = "X-Vault-Token"
|
2017-02-16 18:16:06 +00:00
|
|
|
)
|