mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 21:55:25 +00:00
do not report generic OPERATION_FAILED error when calling virConnectOpenAuth()
virConnectOpenAuth() calls virConnectOpenInternal(). This later function generates fine grained errors arising from various failure conditions that are more accurate than a "catch all" broader VIR_ERR_OPERATION_FAILED error that the callers of this function generates. Remove the broader error so that more specific errors can be caught and processed. Signed-off-by: Ani Sinha <ani@anisinha.ca> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
dc60cc9dcc
commit
974a777f1e
@ -1134,9 +1134,6 @@ libxlDomainMigrationSrcPerformP2P(libxlDriverPrivate *driver,
|
|||||||
virObjectLock(vm);
|
virObjectLock(vm);
|
||||||
|
|
||||||
if (dconn == NULL) {
|
if (dconn == NULL) {
|
||||||
virReportError(VIR_ERR_OPERATION_FAILED,
|
|
||||||
_("Failed to connect to remote libvirt URI %s: %s"),
|
|
||||||
dconnuri, virGetLastErrorMessage());
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5145,9 +5145,6 @@ qemuMigrationSrcPerformPeer2Peer(virQEMUDriver *driver,
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (dconn == NULL) {
|
if (dconn == NULL) {
|
||||||
virReportError(VIR_ERR_OPERATION_FAILED,
|
|
||||||
_("Failed to connect to remote libvirt URI %s: %s"),
|
|
||||||
dconnuri, virGetLastErrorMessage());
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user