diff options
| author | Shreyas Siravara <sshreyas@fb.com> | 2016-01-28 11:19:50 -0800 |
|---|---|---|
| committer | Shreyas Siravara <sshreyas@fb.com> | 2017-09-03 03:42:01 +0000 |
| commit | 92758d3db58ade2d25cdcfa3f7591ac79c9a1ba1 (patch) | |
| tree | 91e637c3f29a401f15c76e6389f903fd1d6bb50d | |
| parent | 9dbbe0e250a6f1b61d0dd8aa73288260a2a4ddb6 (diff) | |
features/lock-revocation: Remove 3.6 version dependency for lock revocation
Summary:
- Per title
- This is a port of D2875451 to 3.8
Test Plan: Live?
Reviewers: dph, moox, dld, rwareing
Reviewed By: rwareing
Change-Id: Ie2862bcbb49d1159cf2465d48cc506f629c527e0
Reviewed-on: https://review.gluster.org/18191
Reviewed-by: Shreyas Siravara <sshreyas@fb.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-set.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c index 645fc8d7e16..f6555955baf 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c @@ -3036,22 +3036,22 @@ struct volopt_map_entry glusterd_volopt_map[] = { { .option = "revocation-secs", .key = "features.locks-revocation-secs", .voltype = "features/locks", - .op_version = GD_OP_VERSION_3_6_0, + .op_version = 2, }, { .option = "revocation-clear-all", .key = "features.locks-revocation-clear-all", .voltype = "features/locks", - .op_version = GD_OP_VERSION_3_6_0, + .op_version = 2, }, { .option = "revocation-max-blocked", .key = "features.locks-revocation-max-blocked", .voltype = "features/locks", - .op_version = GD_OP_VERSION_3_6_0, + .op_version = 2, }, { .option = "monkey-unlocking", .key = "features.locks-monkey-unlocking", .voltype = "features/locks", - .op_version = GD_OP_VERSION_3_6_0, + .op_version = 2, .type = NO_DOC, }, { .key = "cluster.halo-enabled", |
