From 022d76e88abcd88f7b860f6378b75bbaf2362de7 Mon Sep 17 00:00:00 2001 From: ziajka Date: Mon, 30 Oct 2017 11:26:57 +0100 Subject: [PATCH] Warning for getting endpoint of compute --- gns3server/handlers/api/controller/compute_handler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gns3server/handlers/api/controller/compute_handler.py b/gns3server/handlers/api/controller/compute_handler.py index 46c50689..de103915 100644 --- a/gns3server/handlers/api/controller/compute_handler.py +++ b/gns3server/handlers/api/controller/compute_handler.py @@ -105,7 +105,8 @@ class ComputeHandler: }, raw=True, output=COMPUTE_ENDPOINT_OUTPUT_OBJECT_SCHEMA, - description="Returns the endpoint for particular `compute` to specific action.") + description="Returns the endpoint for particular `compute` to specific action. " + "WARNING: This is experimental feature and may change anytime. Please don't rely on this endpoint.") def endpoint(request, response): controller = Controller.instance() compute = controller.get_compute(request.match_info["compute_id"])