Skip to content

Commit

Permalink
webadmin: Remove redundant message when moving disks from VM disk subtab
Browse files Browse the repository at this point in the history
Commit e3d029f introduced a message in the move disks popup noting which
disks are moving while a VM is running.
Prior to that when moving a disks from within the VM disks subtab there
was a general warning when moving disks when the VM is running, this
general message is redundant and thus removed.

Bug-Url: https://bugzilla.redhat.com/-1390543
Change-Id: I7ee926cd02e71e4fece18a1994be99e1d6e68109
Signed-off-by: Tal Nisan <tnisan@redhat.com>
  • Loading branch information
tnisan committed Nov 1, 2016
1 parent 8412985 commit ffedfee
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,14 +394,8 @@ private void move() {
return;
}

VM vm = getEntity();

MoveDiskModel model = new MoveDiskModel();
setWindow(model);
if (vm.isRunningAndQualifyForDisksMigration()) {
model.setWarningAvailable(true);
model.setMessage(ConstantsManager.getInstance().getConstants().liveStorageMigrationWarning());
}

model.setTitle(ConstantsManager.getInstance().getConstants().moveDisksTitle());
model.setHelpTag(HelpTag.move_disk);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1389,8 +1389,6 @@ public interface UIConstants extends Constants {

String shareableDiskNotSupportedByConfiguration();

String liveStorageMigrationWarning();

String cannotRemoveBricksReplicateVolume();

String cannotRemoveBricksDistributedReplicateVolume();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,6 @@ latestTemplateVersionDescription=In case the vm is stateless, vm will be re-crea
latestTemplateVersionName=<latest>
linkStateUpdateNotSupportedForPassthroughVnic=Updating 'Link State' on a 'passthrough' vm network interface is not supported
liveSnapshotWithNoGuestAgentMsg=Could not detect Guest Agent on the VM. Note that without a Guest Agent the data on the created snapshot may be inconsistent.
liveStorageMigrationWarning=Moving disk(s) while the VM is running
loadingFingerprint=fetching fingerprint...
localDataCenterAlreadyContainsAHostDcGuide=Local Data Center already contains a Host
localfsMountPashIsIllegalMsg=Mount path is illegal, please use [/path] convention.
Expand Down

0 comments on commit ffedfee

Please sign in to comment.