diff options
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-handler.c')
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-handler.c | 20 | 
1 files changed, 20 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-handler.c b/xlators/mgmt/glusterd/src/glusterd-handler.c index ac69fc8712d..524ce35d841 100644 --- a/xlators/mgmt/glusterd/src/glusterd-handler.c +++ b/xlators/mgmt/glusterd/src/glusterd-handler.c @@ -3987,6 +3987,26 @@ __glusterd_handle_status_volume (rpcsvc_request_t *req)                  goto out;          } +        if ((cmd & GF_CLI_STATUS_BITD) && +            (conf->op_version < GD_OP_VERSION_3_7_0)) { +                snprintf (err_str, sizeof (err_str), "The cluster is operating " +                          "at a lesser version than %d. Getting the status of " +                          "bitd is not allowed in this state", +                          GD_OP_VERSION_3_7_0); +                ret = -1; +                goto out; +        } + +        if ((cmd & GF_CLI_STATUS_SCRUB) && +            (conf->op_version < GD_OP_VERSION_3_7_0)) { +                snprintf (err_str, sizeof (err_str), "The cluster is operating " +                          "at a lesser version than %d. Getting the status of " +                          "scrub is not allowed in this state", +                          GD_OP_VERSION_3_7_0); +                ret = -1; +                goto out; +        } +          ret = glusterd_op_begin_synctask (req, GD_OP_STATUS_VOLUME, dict);  out:  | 
