diff options
author | Poornima G <pgurusid@redhat.com> | 2016-09-02 10:47:13 +0530 |
---|---|---|
committer | Raghavendra Talur <rtalur@redhat.com> | 2016-09-02 06:02:23 -0700 |
commit | 6459fc812219551291e4be426ed8ecf2c90813a4 (patch) | |
tree | 927d65e1b945052cdd8209dbfa1a219dab6704f2 /tests | |
parent | 1f1850ae79a836f1de783c990e575a0d29e26dee (diff) |
tests: Fix one of the upcall tests
Currently md-cache invalidation feature is enabled by setting
"performance.cache-invalidation", but this case was sent when
"features.cache-invalidation" was enabling md-cache invalidation.
Hence, fix the same.
Change-Id: If044f6208179748a120fbe1d63b676367e707f73
BUG: 1372584
Signed-off-by: Poornima G <pgurusid@redhat.com>
Reviewed-on: http://review.gluster.org/15385
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Ravishankar N <ravishankar@redhat.com>
Reviewed-by: Raghavendra Talur <rtalur@redhat.com>
Smoke: Gluster Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/bugs/upcall/bug-upcall-stat.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/bugs/upcall/bug-upcall-stat.t b/tests/bugs/upcall/bug-upcall-stat.t index b229c139b7b..0ba944ec441 100755 --- a/tests/bugs/upcall/bug-upcall-stat.t +++ b/tests/bugs/upcall/bug-upcall-stat.t @@ -8,10 +8,11 @@ TEST glusterd; TEST $CLI volume create $V0 $H0:$B0/${V0}{1}; -TEST $CLI volume set $V0 performance.md-cache-timeout 600 -TEST $CLI volume set $V0 performance.cache-samba-metadata on TEST $CLI volume set $V0 features.cache-invalidation on TEST $CLI volume set $V0 features.cache-invalidation-timeout 600 +TEST $CLI volume set $V0 performance.cache-invalidation on +TEST $CLI volume set $V0 performance.md-cache-timeout 600 +TEST $CLI volume set $V0 performance.cache-samba-metadata on #TEST $CLI volume stop $V0 TEST $CLI volume start $V0 |