From 6623b4b94a11f8e596c3bec5b351dacc725e48ee Mon Sep 17 00:00:00 2001 From: Slawomir Skowron Date: Mon, 2 Jan 2017 22:30:51 +0100 Subject: [PATCH] test for disable tag sorting --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 24dec4169bfc9..92a41870db412 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -168,7 +168,7 @@ func (c *Config) ListTags() string { tags = append(tags, fmt.Sprintf("%s=%s", k, v)) } - sort.Strings(tags) + //sort.Strings(tags) return strings.Join(tags, " ") }