diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2014-05-15 11:50:53 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-05-27 23:59:52 -0700 |
commit | bb02cfb56ae08f56df4452c2b948fa962ae1212b (patch) | |
tree | 6aabaa62e44684173e6436c6d21c56f65655f4c9 /xlators/mgmt/glusterd/src/glusterd-volume-ops.c | |
parent | 38b2531d91e51dc73ba99ebcd3b98db75affa7d7 (diff) |
cluster/afr: Don't support heal info healed/heal-failed commands
Change-Id: Iecfd3150e4f4e795e3403bcb1ac56340759a37d0
BUG: 1098027
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/7766
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Ravishankar N <ravishankar@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-volume-ops.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-ops.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c index fd19b78b912..1eff081516e 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c @@ -1398,6 +1398,16 @@ glusterd_op_stage_heal_volume (dict_t *dict, char **op_errstr) } switch (heal_op) { + case GF_AFR_OP_HEALED_FILES: + case GF_AFR_OP_HEAL_FAILED_FILES: + ret = -1; + snprintf (msg, sizeof (msg),"Command not supported. " + "Please use \"gluster volume heal %s info\" " + "and logs to find the heal information.", + volname); + *op_errstr = gf_strdup (msg); + goto out; + case GF_AFR_OP_INDEX_SUMMARY: case GF_AFR_OP_STATISTICS_HEAL_COUNT: case GF_AFR_OP_STATISTICS_HEAL_COUNT_PER_REPLICA: |