Remove obsolete note about image search

The note about "image search does not support multi-node scenario"
should be removed after commit [1].

[1]: https://review.openstack.org/#/c/522104/

Change-Id: I0bec150fa0096c6c93f9582e320fe3759d288896
This commit is contained in:
miaohb 2017-11-23 16:57:36 -08:00
parent 1d1bf66868
commit 469fe6666e

View File

@ -167,9 +167,6 @@ class API(rpc_service.API):
self._cast(host, 'image_pull', image=image)
def image_search(self, context, host, image, image_driver, exact_match):
# NOTE(hongbin): Image API doesn't support multiple compute nodes
# scenario yet, so we temporarily set host to None and rpc will
# choose an arbitrary host.
return self._call(host, 'image_search', image=image,
image_driver_name=image_driver,
exact_match=exact_match)