mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-06 18:54:06 +00:00
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:
parent
24e59de06e
commit
f8db96b673
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user