Displaying 9 results from an estimated 9 matches for "finished_failure".
2019 Nov 28
3
[PATCH] rhv-upload: Fix waiting for transfer
We were not considering failures while initializing the transfer. In
this case the transfer phase can change to PAUSED_SYSTEM or
FINISHED_FAILURE, and transfer_url will be None, which failed the
upload with a misleading error:
RuntimeError: direct upload to host not supported, requires
ovirt-engine >= 4.2 and only works when virt-v2v is run within the
oVirt/RHV environment, eg. on an oVirt node
Change the wait loop to consid...
2019 Nov 28
0
Re: [PATCH] rhv-upload: Fix waiting for transfer
On Thu, Nov 28, 2019 at 09:34:18PM +0200, Nir Soffer wrote:
> We were not considering failures while initializing the transfer. In
> this case the transfer phase can change to PAUSED_SYSTEM or
> FINISHED_FAILURE, and transfer_url will be None, which failed the
> upload with a misleading error:
>
> RuntimeError: direct upload to host not supported, requires
> ovirt-engine >= 4.2 and only works when virt-v2v is run within the
> oVirt/RHV environment, eg. on an oVirt node
>...
2019 Nov 28
2
Re: [PATCH] rhv-upload: Fix waiting for transfer
..., 2019 at 10:58 PM Richard W.M. Jones <rjones@redhat.com> wrote:
>
> On Thu, Nov 28, 2019 at 09:34:18PM +0200, Nir Soffer wrote:
> > We were not considering failures while initializing the transfer. In
> > this case the transfer phase can change to PAUSED_SYSTEM or
> > FINISHED_FAILURE, and transfer_url will be None, which failed the
> > upload with a misleading error:
> >
> > RuntimeError: direct upload to host not supported, requires
> > ovirt-engine >= 4.2 and only works when virt-v2v is run within the
> > oVirt/RHV environment, eg....
2019 Dec 10
1
Re: [PATCH] rhv-upload: Fix waiting for transfer
..., 2019 at 10:58 PM Richard W.M. Jones <rjones@redhat.com> wrote:
>
> On Thu, Nov 28, 2019 at 09:34:18PM +0200, Nir Soffer wrote:
> > We were not considering failures while initializing the transfer. In
> > this case the transfer phase can change to PAUSED_SYSTEM or
> > FINISHED_FAILURE, and transfer_url will be None, which failed the
> > upload with a misleading error:
> >
> > RuntimeError: direct upload to host not supported, requires
> > ovirt-engine >= 4.2 and only works when virt-v2v is run within the
> > oVirt/RHV environment, eg....
2018 Sep 20
0
[PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
...e = False,
+ storage_domains = None
+ ):
+ pass
+
+ id = 123
+ status = DiskStatus.OK
+
+class ImageTransferPhase(Enum):
+ CANCELLED = 'cancelled'
+ FINALIZING_FAILURE = 'finalizing_failure'
+ FINALIZING_SUCCESS = 'finalizing_success'
+ FINISHED_FAILURE = 'finished_failure'
+ FINISHED_SUCCESS = 'finished_success'
+ INITIALIZING = 'initializing'
+ PAUSED_SYSTEM = 'paused_system'
+ PAUSED_USER = 'paused_user'
+ RESUMING = 'resuming'
+ TRANSFERRING = 'transferring'
+ UNKNOWN...
2018 Sep 20
7
[PATCH v2 0/3] v2v: -o rhv-upload: Add a test.
v1 was here:
https://www.redhat.com/archives/libguestfs/2018-September/msg00121.html
v2:
- Rewrote patch 2 from scratch so it incorporates Nir's suggestions.
- Add fake module to EXTRA_DIST.
- Retested.
Unfortunately I am no longer able to test the ordinary conversion path
because ovirtsdk4 is incompatible with Fedora 29 / Python 3.7:
2018 Sep 19
4
[PATCH 0/3] v2v: -o rhv-upload: Add a test.
This adds a test of -o rhv-upload.
Obviously for an upstream test we cannot require a working oVirt
server. This test works by faking the ovirtsdk4 Python module,
setting PYTHONPATH so that the fake module is picked up instead of the
real module (if installed).
However it's more complex than that because the nbdkit plugin also
expects to talk to a working imageio HTTPS server. Therefore
2018 Oct 09
2
Re: [PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
...):
> + pass
> +
> + id = 123
> + status = DiskStatus.OK
> +
> +class ImageTransferPhase(Enum):
> + CANCELLED = 'cancelled'
> + FINALIZING_FAILURE = 'finalizing_failure'
> + FINALIZING_SUCCESS = 'finalizing_success'
> + FINISHED_FAILURE = 'finished_failure'
> + FINISHED_SUCCESS = 'finished_success'
> + INITIALIZING = 'initializing'
> + PAUSED_SYSTEM = 'paused_system'
> + PAUSED_USER = 'paused_user'
> + RESUMING = 'resuming'
> + TRANSFERRING = '...
2019 Nov 19
5
[PATCH 0/2] rhv-upload: Complete refactoring
Fix NameError introduced by inocomplete change to extract create_transfer() by
extracting cancel_transfer() function.
Finally extract finallize_transfer() function, dealing with the poorly
documented and over complicated oVirt SDK.
Tested with:
libguestfs-1.40.2-4.fc30.x86_64
nbdkit-1.12.8-1.fc30.x86_64
Tested flows:
- Successful import
- Error in close() - by injecting long sleep in vdsm