Fix issues with empty project variables. Fixes https://github.com/GNS3/gns3-gui/issues/2941

pull/1731/head
grossmj 4 years ago
parent 392678e757
commit 868c39acfe

@ -171,6 +171,11 @@ def load_topology(path):
if "console_type" in node and node["console_type"] is None:
node["console_type"] = "none"
# make sure we can open a project with empty variable name
variables = topo.get("variables")
if variables:
topo["variables"] = [var for var in variables if var.get("name")]
try:
_check_topology_schema(topo)
except aiohttp.web.HTTPConflict as e:

@ -38,7 +38,8 @@ VARIABLES_OBJECT_SCHEMA = {
"properties": {
"name": {
"type": "string",
"description": "Variable name"
"description": "Variable name",
"minLength": 1
},
"value": {
"type": "string",

Loading…
Cancel
Save