From 2364ad2d93088a9e2d119310df957fc93ddd1d8a Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 16 Oct 2018 15:15:36 -0400 Subject: [PATCH] Remove r. from namespace helper --- helper/namespace/namespace.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/helper/namespace/namespace.go b/helper/namespace/namespace.go index 8eaf2157f2..1d21491ac9 100644 --- a/helper/namespace/namespace.go +++ b/helper/namespace/namespace.go @@ -114,10 +114,6 @@ func SplitIDFromString(input string) (string, string) { prefix = "s." input = input[2:] - case strings.HasPrefix(input, "r."): - prefix = "r." - input = input[2:] - case slashIdx > 0: // Leases will never have a b./s. to start if slashIdx == len(input)-1 {