Displaying 3 results from an estimated 3 matches for "notfounderro".
Did you mean:
notfounderror
2019 Mar 17
2
[PATCH] v2v: rhv-upload-plugin - improve wait logic after finalize (RHBZ#1680361)
...fer "
+ "to finalize")
+ continue
+
+ raise RuntimeError("Unexpected transfer phase while
finalizing "
+ "upload %r" % transfer.phase)
except sdk.NotFoundError:
pass
--
2019 Mar 17
0
Re: [PATCH] v2v: rhv-upload-plugin - improve wait logic after finalize (RHBZ#1680361)
...;timed out waiting for transfer "
> - "to finalize")
> + transfer = transfer_service.get()
> +
> + if transfer is None:
>
Are you sure this is possible? the original code assumed that we
fail with sdk.NotFoundError.
> + disk_service = h['disk_service']
> + disk = disk_service.get()
> + if disk.status == types.DiskStatus.OK:
> + continue
>
If the disk status is OK the upload was finished, so we should bre...
2019 Mar 17
2
Re: [PATCH] v2v: rhv-upload-plugin - improve wait logic after finalize (RHBZ#1680361)
...r "
>> - "to finalize")
>> + transfer = transfer_service.get()
>> +
>> + if transfer is None:
>
>
> Are you sure this is possible? the original code assumed that we
> fail with sdk.NotFoundError.
>
>>
>> + disk_service = h['disk_service']
>> + disk = disk_service.get()
>> + if disk.status == types.DiskStatus.OK:
>> + continue
>
>
> If the disk status is OK the...