| Index: appengine/isolate/handlers_endpoints_v1.py
|
| diff --git a/appengine/isolate/handlers_endpoints_v1.py b/appengine/isolate/handlers_endpoints_v1.py
|
| index 085dcf7396116e13153bd73c48971579260162ce..20a409afd405ce3936b998f49482693671aa8444 100644
|
| --- a/appengine/isolate/handlers_endpoints_v1.py
|
| +++ b/appengine/isolate/handlers_endpoints_v1.py
|
| @@ -316,7 +316,10 @@ class IsolateService(remote.Service):
|
| filename=key.id(),
|
| expiration=DEFAULT_LINK_EXPIRATION))
|
|
|
| - @auth.endpoints_method(message_types.VoidMessage, ServerDetails)
|
| + # TODO(kjlubick): Rework these APIs, the http_method part seems to break
|
| + # API explorer.
|
| + @auth.endpoints_method(message_types.VoidMessage, ServerDetails,
|
| + http_method='GET')
|
| @auth.require(acl.isolate_readable)
|
| def server_details(self, _request):
|
| return ServerDetails(server_version=utils.get_app_version())
|
|
|