From 1167c38b2b34288a90bd8e97c1ec2804b4c95179 Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Mon, 17 Nov 2014 17:27:33 +0100 Subject: [PATCH] bug #3359: Fix gluster_volume assignment --- src/sunstone/public/js/plugins/datastores-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/js/plugins/datastores-tab.js b/src/sunstone/public/js/plugins/datastores-tab.js index 50da1ede94..7f8ef51d52 100644 --- a/src/sunstone/public/js/plugins/datastores-tab.js +++ b/src/sunstone/public/js/plugins/datastores-tab.js @@ -959,7 +959,7 @@ function setupCreateDatastoreDialog(){ ds_obj.datastore.gluster_host = gluster_host; if (gluster_volume) - ds_obj.datastore.gluster_host = gluster_volume; + ds_obj.datastore.gluster_volume = gluster_volume; if (pool_name) ds_obj.datastore.pool_name = pool_name;