Merge pull request #3888 from hashicorp/b-acl-name

Increase maximum ACL token length
This commit is contained in:
Alex Dadgar
2018-03-22 14:51:55 -07:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ IMPROVEMENTS:
* core: Servers can now service client HTTP endpoints [[GH-3892](https://github.com/hashicorp/nomad/issues/3892)]
* core: Servers can now retry connecting to Vault to verify tokens without requiring a SIGHUP to do so [[GH-3957](https://github.com/hashicorp/nomad/issues/3957)]
* core: Updated yamux library to pick up memory and CPU performance improvements [[GH-3980](https://github.com/hashicorp/nomad/issues/3980)]
* acl: Increase token name limit from 64 characters to 256 [[GH-3888](https://github.com/hashicorp/nomad/issues/3888)]
* cli: Node status and filesystem related commands do not require direct
network access to the Nomad client nodes [[GH-3892](https://github.com/hashicorp/nomad/issues/3892)]
* cli: Common commands highlighed [[GH-4027](https://github.com/hashicorp/nomad/issues/4027)]

View File

@@ -114,7 +114,7 @@ const (
maxPolicyDescriptionLength = 256
// maxTokenNameLength limits a ACL token name length
maxTokenNameLength = 64
maxTokenNameLength = 256
// ACLClientToken and ACLManagementToken are the only types of tokens
ACLClientToken = "client"