14e44be7b0
Resolves: bz#1234220 bz#1286171 bz#1487177 bz#1524457 bz#1640573 Resolves: bz#1663557 bz#1667954 bz#1683602 bz#1686897 bz#1721355 Resolves: bz#1748865 bz#1750211 bz#1754391 bz#1759875 bz#1761531 Resolves: bz#1761932 bz#1763124 bz#1763129 bz#1764091 bz#1775637 Resolves: bz#1776901 bz#1781550 bz#1781649 bz#1781710 bz#1783232 Resolves: bz#1784211 bz#1784415 bz#1786516 bz#1786681 bz#1787294 Resolves: bz#1787310 bz#1787331 bz#1787994 bz#1790336 bz#1792873 Resolves: bz#1794663 bz#1796814 bz#1804164 bz#1810924 bz#1815434 Resolves: bz#1836099 bz#1837467 bz#1837926 bz#1838479 bz#1839137 Resolves: bz#1844359 Signed-off-by: Rinku Kothiya <rkothiya@redhat.com>
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
From b65ca1045910bc18c601681788eb322dbb8ec2fa Mon Sep 17 00:00:00 2001
|
|
From: Pranith Kumar K <pkarampu@redhat.com>
|
|
Date: Mon, 14 Oct 2019 10:29:31 +0530
|
|
Subject: [PATCH 404/449] tests: Fix spurious failure
|
|
|
|
> Upstream patch:https://review.gluster.org/23546
|
|
> fixes: bz#1759002
|
|
> Change-Id: I4d49e1c2ca9b3c1d74b9dd5a30f1c66983a76529
|
|
> Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
|
|
|
|
BUG: 1764091
|
|
Change-Id: I8b66f08cce7a87788867c6373aed71d6fc65155f
|
|
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
|
|
Reviewed-on: https://code.engineering.redhat.com/gerrit/202370
|
|
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
---
|
|
tests/bugs/replicate/bug-1744548-heal-timeout.t | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tests/bugs/replicate/bug-1744548-heal-timeout.t b/tests/bugs/replicate/bug-1744548-heal-timeout.t
|
|
index 0aaa3ea..c208112 100644
|
|
--- a/tests/bugs/replicate/bug-1744548-heal-timeout.t
|
|
+++ b/tests/bugs/replicate/bug-1744548-heal-timeout.t
|
|
@@ -5,8 +5,8 @@
|
|
. $(dirname $0)/../../afr.rc
|
|
|
|
function get_cumulative_opendir_count {
|
|
-#sed 'n:d' prints odd-numbered lines
|
|
- $CLI volume profile $V0 info |grep OPENDIR|sed 'n;d' | awk '{print $8}'|tr -d '\n'
|
|
+#sed command prints content between Cumulative and Interval, this keeps content from Cumulative stats
|
|
+ $CLI volume profile $V0 info |sed -n '/^Cumulative/,/^Interval/p'|grep OPENDIR| awk '{print $8}'|tr -d '\n'
|
|
}
|
|
|
|
cleanup;
|
|
--
|
|
1.8.3.1
|
|
|