Skip to content

Commit 0859f9c

Browse files
Fix bug in azure machinery when gathering relevant machines
1 parent 858ebe9 commit 0859f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/machinery/az.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ def _get_relevant_machines(self, tag):
12151215
"""
12161216
# The number of relevant machines are those from the list of locked and unlocked machines
12171217
# that have the correct tag in their name
1218-
return [machine for machine in self.db.list_machines([tag])]
1218+
return [machine for machine in self.db.list_machines(tags=[tag])]
12191219

12201220
@staticmethod
12211221
def _wait_for_concurrent_operations_to_complete(timeout=AZURE_TIMEOUT):

0 commit comments

Comments
 (0)