search for: conn_debug

Displaying 5 results from an estimated 5 matches for "conn_debug".

Did you mean: code_debug
2018 Feb 22
0
[PATCH 5/5] v2v: Add -o rhv-upload output mode.
...s_utils +open Unix_utils +open Common_gettext.Gettext + +open Types +open Utils + +(* These correspond mostly to the fields in the Python + * sdk.Connection object, except for the password which + * is handled separately. + *) +type connection = { + conn_url : string; + conn_username : string; + conn_debug : bool; +} + +let string_of_connection conn = + sprintf "url=%s username=%s debug=%b" + conn.conn_url conn.conn_username conn.conn_debug + +(* Python code fragments go first. Note these must not be + * indented because of Python's stupid whitespace thing. + *) + +(* Print t...
2018 Feb 27
0
[PATCH v2 3/3] v2v: Add -o rhv-upload output mode.
...fer + * object to finish initializing [seconds]. + *) +let ovirt_timeout = 5*60 + +(* These correspond mostly to the fields in the Python + * sdk.Connection object, except for the password which + * is handled separately. + *) +type connection = { + conn_url : string; + conn_username : string; + conn_debug : bool; +} + +let string_of_connection conn = + sprintf "url=%s username=%s debug=%b" + conn.conn_url conn.conn_username conn.conn_debug + +(* Python code fragments go first. Note these must not be + * indented because of Python's stupid whitespace thing. + *) + +(* Print t...
2018 Feb 27
5
[PATCH v2 0/3] v2v: Add -o rhv-upload output mode.
This patch set is still for discussion only. See 3/3 for the current list of problems. However this will upload an image to an oVirt or RHV server, although you must have absolutely the latest snapshot version of 4.2 for it to work. Rich.
2018 Feb 22
2
Re: [PATCH 5/5] v2v: Add -o rhv-upload output mode.
...> +open Types > +open Utils > + > +(* These correspond mostly to the fields in the Python > + * sdk.Connection object, except for the password which > + * is handled separately. > + *) > +type connection = { > + conn_url : string; > + conn_username : string; > + conn_debug : bool; > +} > + > +let string_of_connection conn = > + sprintf "url=%s username=%s debug=%b" > + conn.conn_url conn.conn_username conn.conn_debug > + > +(* Python code fragments go first. Note these must not be > + * indented because of Python's stu...
2018 Feb 22
11
[PATCH 0/5] v2v: Add -o rhv-upload output mode.
The first four patches are straightforward. The final patch adds the -o rhv-upload output mode. It is still spooling into a temporary file because I've had some trouble getting streaming conversions working. There are other problems as outlined in the commit message, so this patch is not ready for upstream but is good for discussion. Also I hit this, which I'm assuming for now will be