Skip to content

Commit

Permalink
Merge pull request #32718 from vespa-engine/revert-32717-limit-vault-…
Browse files Browse the repository at this point in the history
…name-lenght

Revert "Reduce max vault name length from 64 to 24"
  • Loading branch information
freva authored Oct 30, 2024
2 parents ca0413e + bb02811 commit 32a3d7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
public class VaultName extends PatternedStringWrapper<VaultName> {

private static final Pattern namePattern = Pattern.compile("[.a-zA-Z0-9_-]{1,24}");
private static final Pattern namePattern = Pattern.compile("[.a-zA-Z0-9_-]{1,64}");

private VaultName(String name) {
super(name, namePattern, "Vault name");
Expand Down

0 comments on commit 32a3d7a

Please sign in to comment.