Allow to change the number of adapters for Docker (server side)

This commit is contained in:
Julien Duponchelle 2016-04-06 16:01:34 +02:00
parent cb197627b4
commit b93c85c390
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D

View File

@ -279,6 +279,7 @@ class DockerHandler:
vm.console = request.json.get("console", vm.console)
vm.start_command = request.json.get("start_command", vm.start_command)
vm.environment = request.json.get("environment", vm.environment)
vm.adapters = request.json.get("adapters", vm.adapters)
yield from vm.update()
response.json(vm)