1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Fix Update a docker container is broken and raise a 400

Fix #403
This commit is contained in:
Julien Duponchelle 2016-02-10 18:20:15 +01:00
parent 5a8408cdb9
commit 1995adf838
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D

View File

@ -91,8 +91,13 @@ DOCKER_UPDATE_SCHEMA = {
"description": "Docker environment",
"type": ["string", "null"],
"minLength": 0,
},
"adapters": {
"description": "number of adapters",
"type": ["integer", "null"],
"minimum": 0,
"maximum": 99,
}
},
"additionalProperties": False,
}