Displaying 2 results from an estimated 2 matches for "931fcfaa2".
2018 Jul 05
2
[PATCH v2] v2v: rhv plugin - find suitable host
...and belong to the same datacenter as the created disk.
Added these criteria to the host search query.
---
v2v/rhv-upload-plugin.py | 28 ++++++++++++++++++++++++----
1 file changed, 24 insertions(+), 4 deletions(-)
diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py
index da309e288..931fcfaa2 100644
--- a/v2v/rhv-upload-plugin.py
+++ b/v2v/rhv-upload-plugin.py
@@ -69,14 +69,34 @@ def find_host(connection):
debug("hw_id = %r" % vdsm_id)
- hosts_service = connection.system_service().hosts_service()
+ system_service = connection.system_service()
+ storage_name =...
2018 Jul 05
0
Re: [PATCH v2] v2v: rhv plugin - find suitable host
...as the created disk.
> Added these criteria to the host search query.
> ---
> v2v/rhv-upload-plugin.py | 28 ++++++++++++++++++++++++----
> 1 file changed, 24 insertions(+), 4 deletions(-)
>
> diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py
> index da309e288..931fcfaa2 100644
> --- a/v2v/rhv-upload-plugin.py
> +++ b/v2v/rhv-upload-plugin.py
> @@ -69,14 +69,34 @@ def find_host(connection):
>
> debug("hw_id = %r" % vdsm_id)
>
> - hosts_service = connection.system_service().hosts_service()
> + system_service = connection....