mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-04 23:29:02 +00:00
Rename vms_lock to vm_locks.
This commit is contained in:
parent
6bb7ab20b3
commit
550cc7f508
@ -63,7 +63,7 @@ class Route(object):
|
|||||||
_routes = []
|
_routes = []
|
||||||
_documentation = {}
|
_documentation = {}
|
||||||
|
|
||||||
_vms_lock = {}
|
_vm_locks = {}
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get(cls, path, *args, **kw):
|
def get(cls, path, *args, **kw):
|
||||||
@ -163,8 +163,8 @@ class Route(object):
|
|||||||
vm_id = request.match_info.get("vm_id")
|
vm_id = request.match_info.get("vm_id")
|
||||||
if vm_id is None:
|
if vm_id is None:
|
||||||
vm_id = request.match_info["device_id"]
|
vm_id = request.match_info["device_id"]
|
||||||
cls._vms_lock.setdefault(vm_id, asyncio.Lock())
|
cls._vm_locks.setdefault(vm_id, asyncio.Lock())
|
||||||
with (yield from cls._vms_lock[vm_id]):
|
with (yield from cls._vm_locks[vm_id]):
|
||||||
response = yield from control_schema(request)
|
response = yield from control_schema(request)
|
||||||
else:
|
else:
|
||||||
response = yield from control_schema(request)
|
response = yield from control_schema(request)
|
||||||
|
Loading…
Reference in New Issue
Block a user