search for: 8c11012b

Displaying 2 results from an estimated 2 matches for "8c11012b".

2020 Jun 06
1
[PATCH] v2v: fix spelling errors in Python comments
.../tags/spelling-error-in-binary.html Signed-off-by: Kevin Locke <kevin@kevinlocke.name> --- v2v/rhv-upload-plugin.py | 4 ++-- v2v/rhv-upload-vmcheck.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py index d3e6260e..8c11012b 100644 --- a/v2v/rhv-upload-plugin.py +++ b/v2v/rhv-upload-plugin.py @@ -83,7 +83,7 @@ def parse_username(): def failing(func): """ - Decorator marking the handle as failed if any expection is raised in the + Decorator marking the handle as failed if any exception is ra...
2020 Jul 08
2
[PATCH] RFC: rhv-upload-plugin: Use imageio client
...re here: https://gerrit.ovirt.org/q/topic:client+is:open+project:ovirt-imageio - Not tested yet. --- v2v/rhv-upload-plugin.py | 359 +++++++-------------------------------- 1 file changed, 61 insertions(+), 298 deletions(-) diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py index 8c11012b..172da602 100644 --- a/v2v/rhv-upload-plugin.py +++ b/v2v/rhv-upload-plugin.py @@ -26,12 +26,17 @@ import ssl import sys import time +from ovirt_imageio.client import ImageioClient + from http.client import HTTPSConnection, HTTPConnection from urllib.parse import urlparse import ovirtsdk4...