diff options
author | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2018-03-27 14:59:59 -0400 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-03-28 07:39:55 +0000 |
commit | 8e7c83e80d726d10073675af85a2e74831088915 (patch) | |
tree | dac39bae302bc021464489dd90b3b756a216a62a | |
parent | 20fb08d5258f2324433dd465257bcd65e8fe12c2 (diff) |
glusterd: changing the op-version of volume stop mgmt v3
log message describe the actual test
Change-Id: I1ea7300a6b186032a65236492d6d2a6eef0ab983
fixes: bz#1560441
Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-ops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c index 309ea7b1e70..e46ef57e441 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c @@ -638,9 +638,9 @@ __glusterd_handle_cli_stop_volume (rpcsvc_request_t *req) if (conf->op_version < GD_OP_VERSION_4_1_0) { gf_msg_debug (this->name, 0, "The cluster is operating at " - "version less than or equal to %d. Volume start " - "falling back to syncop framework.", - GD_OP_VERSION_4_1_0); + "version less than %d. Volume start " + "falling back to syncop framework.", + GD_OP_VERSION_4_1_0); ret = glusterd_op_begin_synctask (req, GD_OP_STOP_VOLUME, dict); } else { |