Fixing a bug in

https://github.com/GoogleCloudPlatform/kubernetes/pull/3404 which broke
swagger-ui.
Swagger-ui requires operation to be defined on all Routes.
This commit is contained in:
nikhiljindal 2015-01-12 15:20:01 -08:00
parent 24e59de06e
commit f8db96b673

View File

@ -167,8 +167,7 @@ func registerResourceHandlers(ws *restful.WebService, version string, path strin
if _, ok := storage.(RESTGetter); ok {
ws.Route(getRoute.Writes(versionedObject)) // on the response
} else {
ws.Route(ws.GET(path+"/{name}").To(h).
Returns(http.StatusMethodNotAllowed, "reading individual objects is not supported", nil))
ws.Route(getRoute.Returns(http.StatusMethodNotAllowed, "reading individual objects is not supported", nil))
}
updateRoute := ws.PUT(path + "/{name}").To(h).