Merge "Avoid joins in _server_group_count_members_by_user"
This commit is contained in:
commit
081c7ee2cb
@ -1278,7 +1278,8 @@ def _server_group_count_members_by_user(context, group, user_id):
|
|||||||
for cell_mapping in cell_mappings:
|
for cell_mapping in cell_mappings:
|
||||||
with nova_context.target_cell(context, cell_mapping) as cctxt:
|
with nova_context.target_cell(context, cell_mapping) as cctxt:
|
||||||
greenthreads.append(utils.spawn(
|
greenthreads.append(utils.spawn(
|
||||||
objects.InstanceList.get_by_filters, cctxt, filters))
|
objects.InstanceList.get_by_filters, cctxt, filters,
|
||||||
|
expected_attrs=[]))
|
||||||
instances = objects.InstanceList(objects=[])
|
instances = objects.InstanceList(objects=[])
|
||||||
for greenthread in greenthreads:
|
for greenthread in greenthreads:
|
||||||
found = greenthread.wait()
|
found = greenthread.wait()
|
||||||
|
Loading…
Reference in New Issue
Block a user