Skip to content

Commit

Permalink
Fixed copy/paste bug where stop_order was set to start_order in
Browse files Browse the repository at this point in the history
QueueManager.manage().
  • Loading branch information
zakv committed Jan 5, 2021
1 parent 0e153f2 commit ca203a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blacs/experiment_queue.py
Expand Up @@ -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)
Expand Down

0 comments on commit ca203a4

Please sign in to comment.