open-vault/helper/consts/consts.go

15 lines
436 B
Go
Raw Normal View History

package consts
const (
2018-03-20 18:54:10 +00:00
// ExpirationRestoreWorkerCount specifies the number of workers to use while
// 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"
)