From 9345da0bfda5434536573da80ae8e72c518be801 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Mon, 8 Sep 2014 13:05:38 -0700 Subject: [PATCH] Fix build --- pkg/apiserver/proxy.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/apiserver/proxy.go b/pkg/apiserver/proxy.go index 02ebf9c39d4..98330530ec1 100644 --- a/pkg/apiserver/proxy.go +++ b/pkg/apiserver/proxy.go @@ -27,6 +27,7 @@ import ( "strings" "github.com/GoogleCloudPlatform/kubernetes/pkg/httplog" + "github.com/GoogleCloudPlatform/kubernetes/pkg/runtime" "github.com/GoogleCloudPlatform/kubernetes/pkg/util" "code.google.com/p/go.net/html" @@ -71,7 +72,7 @@ var tagsToAttrs = map[string]util.StringSet{ type ProxyHandler struct { prefix string storage map[string]RESTStorage - codec Codec + codec runtime.Codec } func (r *ProxyHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {