diff options
author | hari gowtham <hgowtham@redhat.com> | 2015-10-05 17:13:44 +0530 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2015-10-08 23:24:19 -0700 |
commit | 9e0c2c9d5e9b4f5df644911e29be4a611e0d2d42 (patch) | |
tree | 638ab8911c4e96ce6ea9c942ee720a7fd65ccd03 /cli/src/cli-xml-output.c | |
parent | 497481861d9d4aadd982199c01795dbb20972b89 (diff) |
Tier/cli: number of bricks remains the same in v info --xml
back port of : http://review.gluster.org/#/c/12303/1
The number of bricks count remains one for the cold type.
Actual result:
<numberOfBricks>1 x 2 = 2</numberOfBricks>
Expected result:
<numberOfBricks>3 x 2 = 6</numberOfBricks>
>Change-Id: I31480a7808b248ef9ea805cb64f7663d44647ddf
>BUG: 1268822
>Signed-off-by: hari gowtham <hgowtham@redhat.com>
>Reviewed-on: http://review.gluster.org/12303
>Tested-by: NetBSD Build System <jenkins@build.gluster.org>
>Reviewed-by: Dan Lambright <dlambrig@redhat.com>
>Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Change-Id: Ie533bddcc5c7a518c1d6d942e73258f3610cca33
BUG: 1269344
Signed-off-by: hari gowtham <hgowtham@redhat.com>
Reviewed-on: http://review.gluster.org/12307
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Diffstat (limited to 'cli/src/cli-xml-output.c')
-rw-r--r-- | cli/src/cli-xml-output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/cli-xml-output.c b/cli/src/cli-xml-output.c index 753966d7736..87bd0589bb9 100644 --- a/cli/src/cli-xml-output.c +++ b/cli/src/cli-xml-output.c @@ -2794,7 +2794,7 @@ cli_xml_output_vol_info (cli_local_t *local, dict_t *dict) } tier_vol_type = value[HOT_TYPE]; - value[hot_dist_count] = (value[HOT_REPLICA_COUNT] ? + hot_dist_count = (value[HOT_REPLICA_COUNT] ? value[HOT_REPLICA_COUNT] : 1); if ((value[HOT_TYPE] != GF_CLUSTER_TYPE_TIER) && (value[HOT_TYPE] > 0) && |