diff options
author | karthik-us <ksubrahm@redhat.com> | 2017-10-25 12:42:23 +0530 |
---|---|---|
committer | jiffin tony Thottan <jthottan@redhat.com> | 2017-11-30 06:43:18 +0000 |
commit | 3c39df42ffadb060b38b62d70eded285d650f08d (patch) | |
tree | d29dcb0a7d02edab1c048e8cd9a6ddb2e00aa162 | |
parent | 0324e3cb954f9b8a74af5577a78ed4e2419dd1df (diff) |
cluster/afr: Print heal info split-brain output in stream fashion
Problem:
When we trigger the heal info split-brain command the o/p is not
streamed as it is received, but dumped at the end for all the bricks
together. This gives a perception that the command is hung.
Fix:
When we get a split brain entry while crawling throught the pending
heal entries, flush that immediately so that it prints the output
in a stream fashion and doesn't look like the cli is hung.
Change-Id: I7547e86b83202d66616749b8b31d4d0dff0abf07
BUG: 1514420
Signed-off-by: karthik-us <ksubrahm@redhat.com>
(cherry picked from commit 05f9c13f4d69e4113f5a851f4097ef35ba3f33b2)
-rw-r--r-- | heal/src/glfs-heal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/heal/src/glfs-heal.c b/heal/src/glfs-heal.c index 27115f3ca6c..c0ca0e4c846 100644 --- a/heal/src/glfs-heal.c +++ b/heal/src/glfs-heal.c @@ -113,6 +113,7 @@ void glfsh_print_hr_spb_status (char *path, uuid_t gfid, char *status) { printf ("%s\n", path); + fflush (stdout); return; } @@ -126,6 +127,7 @@ void glfsh_print_hr_heal_status (char *path, uuid_t gfid, char *status) { printf ("%s%s\n", path, status); + fflush (stdout); } #if (HAVE_LIB_XML) |