From f737989e447702fe78eb15fa0c7b66ce6951ee07 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 17 Oct 2016 14:29:29 +0200 Subject: [PATCH] Fix HTTP console not working for docker containers Fix #1568 --- gns3server/schemas/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/schemas/node.py b/gns3server/schemas/node.py index 0536091b4..cd57e413c 100644 --- a/gns3server/schemas/node.py +++ b/gns3server/schemas/node.py @@ -133,7 +133,7 @@ NODE_OBJECT_SCHEMA = { }, "console_type": { "description": "Console type", - "enum": ["serial", "vnc", "telnet", None] + "enum": ["serial", "vnc", "telnet", "http", None] }, "properties": { "description": "Properties specific to an emulator",