summaryrefslogtreecommitdiffstats
path: root/src/com.gluster.storage.management.gui
diff options
context:
space:
mode:
authorShireesh Anjal <anjalshireesh@gmail.com>2011-08-04 06:32:39 -0700
committerShireesh Anjal <anjalshireesh@gmail.com>2011-08-04 06:32:39 -0700
commit4c71d851c5d773375c6a67cdcf4c3f03a207bedb (patch)
tree190acad118607651586852ea5e91e1d57a23449e /src/com.gluster.storage.management.gui
parent81f099bec13eaf3cfcad6132128e6f99d7b19e68 (diff)
parenta1b08960d702da1fd46bd662c9a44e7e2599d001 (diff)
Merge pull request #194 from Selvasundaram/master
Bug 3330 - Once volume creation fails the creation dialog should stay on the screen -fix
Diffstat (limited to 'src/com.gluster.storage.management.gui')
-rw-r--r--src/com.gluster.storage.management.gui/src/com/gluster/storage/management/gui/dialogs/CreateVolumeWizard.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com.gluster.storage.management.gui/src/com/gluster/storage/management/gui/dialogs/CreateVolumeWizard.java b/src/com.gluster.storage.management.gui/src/com/gluster/storage/management/gui/dialogs/CreateVolumeWizard.java
index 0d8104bb..287be661 100644
--- a/src/com.gluster.storage.management.gui/src/com/gluster/storage/management/gui/dialogs/CreateVolumeWizard.java
+++ b/src/com.gluster.storage.management.gui/src/com/gluster/storage/management/gui/dialogs/CreateVolumeWizard.java
@@ -57,6 +57,7 @@ public class CreateVolumeWizard extends Wizard {
handlePartSuccess(newVolume, volumesClient, errMsg);
} else {
MessageDialog.openError(getShell(), title, "Volume creation failed! Error: " + errMsg);
+ return false;
}
}