diff options
author | Anoop C S <anoopcs@redhat.com> | 2016-05-03 12:50:51 +0530 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2016-05-03 11:08:45 -0700 |
commit | 717e66a799b70c9b61ad56ab9d27915e265f9d3d (patch) | |
tree | 92f859ad7d3bb832f22d73b2721539b599c60a2d | |
parent | 29254449b19697b93ebf376541ea5062b4a99fcb (diff) |
mgmt/glusterd: Fix op-version for mandatory-locking volume set option
The following volume set option will be available with 3.8 release.
locks.mandatory-locking
This one-line change is to fix the wrongly set op-version for the
above mentioned volume set option.
Change-Id: Icc7d213f917f5f69e2ec84c685b1138ce2f86a90
BUG: 1332413
Signed-off-by: Anoop C S <anoopcs@redhat.com>
Reviewed-on: http://review.gluster.org/14180
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c index 7e3cda8d222..e53e99739d2 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c @@ -2822,7 +2822,7 @@ struct volopt_map_entry glusterd_volopt_map[] = { }, { .key = "locks.mandatory-locking", .voltype = "features/locks", - .op_version = GD_OP_VERSION_4_0_0, + .op_version = GD_OP_VERSION_3_8_0, .validate_fn = validate_mandatory_locking, }, { .key = "cluster.disperse-self-heal-daemon", |