search for: 8e4052048

Displaying 1 result from an estimated 1 matches for "8e4052048".

2018 Jun 29
0
[PATCH] v2v: rhv-upload-plugin: Improve error handling
...message to make this clear. Also comment in the error handler why we take this path instead of failing the operation. --- v2v/rhv-upload-plugin.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py index f404bd758..8e4052048 100644 --- a/v2v/rhv-upload-plugin.py +++ b/v2v/rhv-upload-plugin.py @@ -63,7 +63,10 @@ def find_host(connection): with builtins.open("/etc/vdsm/vdsm.id") as f: vdsm_id = f.readline().strip() except Exception as e: + # This is most likely not an oVirt hos...