From 36c8920cd1f977e15fd89e9c7b13ca8b4ad76bbc Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 20 Oct 2020 16:27:00 +1030 Subject: [PATCH] Warn not to use the private compute API. Fixes #1593. --- gns3server/endpoints/compute/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/endpoints/compute/__init__.py b/gns3server/endpoints/compute/__init__.py index aaaba18a..b75d8de9 100644 --- a/gns3server/endpoints/compute/__init__.py +++ b/gns3server/endpoints/compute/__init__.py @@ -50,7 +50,7 @@ from . import vpcs_nodes compute_api = FastAPI(title="GNS3 compute API", - description="This page describes the private compute API for GNS3", + description="This page describes the private compute API for GNS3. PLEASE DO NOT USE DIRECTLY!", version="v2")