Skip to content

Commit

Permalink
Merge pull request #3888 from hashicorp/b-acl-name
Browse files Browse the repository at this point in the history
Increase maximum ACL token length
  • Loading branch information
dadgar committed Mar 22, 2018
2 parents 22cdbe7 + 8c171db commit 7d8ca3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion nomad/structs/structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7d8ca3f

Please sign in to comment.