From c95b0e02928e28c0bd5400b58b6ed043c1bbff23 Mon Sep 17 00:00:00 2001 From: Burke Libbey Date: Tue, 7 Oct 2014 11:13:17 -0400 Subject: [PATCH] Increase the tag length limit from 30 to 128 Signed-off-by: Burke Libbey --- graph/tags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/tags.go b/graph/tags.go index 150bdb9640..31c65ced5c 100644 --- a/graph/tags.go +++ b/graph/tags.go @@ -19,7 +19,7 @@ import ( const DEFAULTTAG = "latest" var ( - validTagName = regexp.MustCompile(`^[\w][\w.-]{0,29}$`) + validTagName = regexp.MustCompile(`^[\w][\w.-]{0,127}$`) ) type TagStore struct {