1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-23 14:31:03 +00:00

Fix an error when updating IOU node

This commit is contained in:
Julien Duponchelle 2016-06-10 16:39:54 +02:00
parent 2a5cf18d20
commit 1c6de3ff39
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -42,6 +42,10 @@ IOU_CREATE_SCHEMA = {
"maximum": 65535, "maximum": 65535,
"type": ["integer", "null"] "type": ["integer", "null"]
}, },
"console_type": {
"description": "Console type",
"enum": ["telnet", None]
},
"path": { "path": {
"description": "Path of iou binary", "description": "Path of iou binary",
"type": "string" "type": "string"
@ -115,6 +119,10 @@ IOU_UPDATE_SCHEMA = {
"maximum": 65535, "maximum": 65535,
"type": ["integer", "null"] "type": ["integer", "null"]
}, },
"console_type": {
"description": "Console type",
"enum": ["telnet", None]
},
"path": { "path": {
"description": "Path of iou binary", "description": "Path of iou binary",
"type": ["string", "null"] "type": ["string", "null"]