From ca203a42235141f2c2709f459fe7bf718eb6752b Mon Sep 17 00:00:00 2001 From: Zak V Date: Mon, 4 Jan 2021 21:16:06 -0500 Subject: [PATCH] Fixed copy/paste bug where stop_order was set to start_order in QueueManager.manage(). --- blacs/experiment_queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blacs/experiment_queue.py b/blacs/experiment_queue.py index 1844cf11..f98875e3 100644 --- a/blacs/experiment_queue.py +++ b/blacs/experiment_queue.py @@ -598,7 +598,7 @@ def restart_function(device_name): ) devices_in_use[name] = self.BLACS.tablist[name] start_order[name] = device_properties.get('start_order', None) - stop_order[name] = device_properties.get('start_order', None) + stop_order[name] = device_properties.get('stop_order', None) # Sort the devices into groups based on their start_order and stop_order start_groups = defaultdict(set)