From 780b00f095fcf860117e46264b31196e22afd490 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 17 Oct 2016 10:10:59 +0200 Subject: [PATCH] Fix validation error with auxilary console Fix https://github.com/GNS3/gns3-gui/issues/1569 --- gns3server/schemas/dynamips_vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/schemas/dynamips_vm.py b/gns3server/schemas/dynamips_vm.py index 96c4d81c..1ec43c62 100644 --- a/gns3server/schemas/dynamips_vm.py +++ b/gns3server/schemas/dynamips_vm.py @@ -140,7 +140,7 @@ VM_CREATE_SCHEMA = { }, "aux": { "description": "Auxiliary console TCP port", - "type": "integer", + "type": ["null", "integer"], "minimum": 1, "maximum": 65535 },