Vered Volansky has uploaded a new change for review. Change subject: core: Changed VdcBllErrors.InvalidPhysDev ......................................................................
core: Changed VdcBllErrors.InvalidPhysDev Changed InvalidPhysDev to InaccessiblePhysDev InvalidPhysDev gave a cryptic error message - Invalid physical device. The message was amended into "Multipath cannot access physical device". The error key was changed according to the new message content. The error code remains the same. The corresponding exception was also changed in vdsm - I648ee519873c51573e6e6306b79380f54bb25d2e , though there's no dependency between the two patches (communicate through code, which remains the same). Change-Id: I50d91d159766ba9071f532fa56b6b90bd9d5d766 Bug-Url: https://bugzilla.redhat.com/852003 Signed-off-by: Vered Volansky <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/errors/VdcBllErrors.java M backend/manager/modules/dal/src/main/resources/bundles/VdsmErrors.properties M frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/VdsmErrors.java M frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties M frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties 5 files changed, 5 insertions(+), 5 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/68/21168/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/errors/VdcBllErrors.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/errors/VdcBllErrors.java index 422af2d..3647200 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/errors/VdcBllErrors.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/errors/VdcBllErrors.java @@ -289,7 +289,7 @@ CouldNotRetrievePhysicalVolumeList(603), LogicalVolumeAlreadyExists(604), CouldNotRetrieveLogicalVolumesList(605), - InvalidPhysDev(606), + InaccessiblePhysDev(606), PartitionedPhysDev(607), MkfsError(608), MissingTagOnLogicalVolume(609), diff --git a/backend/manager/modules/dal/src/main/resources/bundles/VdsmErrors.properties b/backend/manager/modules/dal/src/main/resources/bundles/VdsmErrors.properties index b3abdd0..dfb3366 100644 --- a/backend/manager/modules/dal/src/main/resources/bundles/VdsmErrors.properties +++ b/backend/manager/modules/dal/src/main/resources/bundles/VdsmErrors.properties @@ -249,7 +249,7 @@ FileStorageDomainStaleNFSHandle=Stale NFS handle on underlying NFS server InvalidJob=Job is invalid ReachedMaxNumberOfHostsInDC=The maximum number of Hosts allowed in the Data Center has been reached -InvalidPhysDev=Invalid physical device +InaccessiblePhysDev=Multipath cannot access physical device PartitionedPhysDev=Partitioned physical device InvalidRecovery=Recovery is invalid InvalidTaskMng=invalid Task Manager diff --git a/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/VdsmErrors.java b/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/VdsmErrors.java index 7e66e17..03fa7da 100644 --- a/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/VdsmErrors.java +++ b/frontend/webadmin/modules/frontend/src/main/java/org/ovirt/engine/ui/frontend/VdsmErrors.java @@ -483,7 +483,7 @@ String ReachedMaxNumberOfHostsInDC(); - String InvalidPhysDev(); + String InaccessiblePhysDev(); String PartitionedPhysDev(); diff --git a/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties b/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties index 192d5a2..8ec426f 100644 --- a/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties +++ b/frontend/webadmin/modules/userportal-gwtp/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties @@ -238,7 +238,7 @@ FileStorageDomainStaleNFSHandle=Stale NFS handle on underlying NFS server InvalidJob=Job is invalid ReachedMaxNumberOfHostsInDC=The maximum number of Hosts allowed in the Data Center has been reached -InvalidPhysDev=Invalid physical device +InaccessiblePhysDev=Multipath cannot access physical device PartitionedPhysDev=Partitioned physical device InvalidRecovery=Recovery is invalid InvalidTaskMng=invalid Task Manager diff --git a/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties b/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties index e27f37c..16e6b12 100644 --- a/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties +++ b/frontend/webadmin/modules/webadmin/src/main/resources/org/ovirt/engine/ui/frontend/VdsmErrors.properties @@ -238,7 +238,7 @@ FileStorageDomainStaleNFSHandle=Stale NFS handle on underlying NFS server InvalidJob=Job is invalid ReachedMaxNumberOfHostsInDC=The maximum number of Hosts allowed in the Data Center has been reached -InvalidPhysDev=Invalid physical device +InaccessiblePhysDev=Multipath cannot access physical device PartitionedPhysDev=Partitioned physical device InvalidRecovery=Recovery is invalid InvalidTaskMng=invalid Task Manager -- To view, visit http://gerrit.ovirt.org/21168 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I50d91d159766ba9071f532fa56b6b90bd9d5d766 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Vered Volansky <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
