diff --git a/server/app/app.py b/server/app/app.py index 3b48d6ea..d926f515 100644 --- a/server/app/app.py +++ b/server/app/app.py @@ -233,7 +233,8 @@ class DatasetResource(Resource): class SchemaAPI(DatasetResource): - @cache_control(public=True, max_age=ONE_WEEK) + # TODO @mdunitz separate dataset schema and user schema + @cache_control(no_store=True) @rest_get_data_adaptor def get(self, data_adaptor): return common_rest.schema_get(data_adaptor)