Revert "Merge pull request #47353 from apelisse/http-cache"

This reverts commit fc89743dca, reversing
changes made to 29ab38e898.
This commit is contained in:
Jordan Liggitt
2017-08-07 09:42:32 -04:00
parent 02d04de81e
commit 4ee72eb300
42 changed files with 491 additions and 2036 deletions

View File

@@ -418,7 +418,7 @@ func (f *FakeFactory) SwaggerSchema(schema.GroupVersionKind) (*swagger.ApiDeclar
return nil, nil
}
func (f *FakeFactory) OpenAPISchema() (openapi.Resources, error) {
func (f *FakeFactory) OpenAPISchema(cacheDir string) (openapi.Resources, error) {
return nil, nil
}
@@ -756,7 +756,7 @@ func (f *fakeAPIFactory) SwaggerSchema(schema.GroupVersionKind) (*swagger.ApiDec
return nil, nil
}
func (f *fakeAPIFactory) OpenAPISchema() (openapi.Resources, error) {
func (f *fakeAPIFactory) OpenAPISchema(cacheDir string) (openapi.Resources, error) {
if f.tf.OpenAPISchemaFunc != nil {
return f.tf.OpenAPISchemaFunc()
}