From 8946ce5f0040b5fd3b45b98a8437f5a3fbdc4374 Mon Sep 17 00:00:00 2001 From: Antoine Millet Date: Thu, 24 Sep 2015 10:22:32 +0200 Subject: [PATCH] rescue tag on VM now use the new max_concurrent arg in background decorator --- cloudcontrol/node/hypervisor/domains/vm_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudcontrol/node/hypervisor/domains/vm_tags.py b/cloudcontrol/node/hypervisor/domains/vm_tags.py index 0fcc806..0d8b09c 100644 --- a/cloudcontrol/node/hypervisor/domains/vm_tags.py +++ b/cloudcontrol/node/hypervisor/domains/vm_tags.py @@ -58,7 +58,7 @@ def uuid(dom): return dom.uuid.lower() -@background +@background(max_concurrent=3) def rescue(dom): """Is rescue mode enabled or not""" rescue_path = dom.hypervisor.handler.main.config.rescue_script -- GitLab