From 2563c0415886ba4c111e126d687ba267f83a454b Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Tue, 15 Oct 2019 11:20:50 -0400 Subject: [PATCH] Fix proto.Merge of IntOrString type --- staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go b/staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go index 12c8a7b6cbe..2df62955538 100644 --- a/staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go +++ b/staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go @@ -45,7 +45,7 @@ type IntOrString struct { } // Type represents the stored type of IntOrString. -type Type int +type Type int64 const ( Int Type = iota // The IntOrString holds an int.