diff options
author | Aravinda VK <avishwan@redhat.com> | 2015-07-16 18:23:36 +0530 |
---|---|---|
committer | Venky Shankar <vshankar@redhat.com> | 2015-11-18 20:02:30 -0800 |
commit | 6046c73eb86d2409b93ae59a4a59124eacb7c711 (patch) | |
tree | bdb76677af84c9d727f230a211e1311f9dab3597 /tools | |
parent | 6cc7ac4e2f29562953caa477a0ecd715977e1e16 (diff) |
tools/glusterfind: Do not show session corrupted if no status file
When a glusterfind session is created it creates session directories
in all the nodes which are part of the Volume. But session status
file only present in initiated node.
Show Session corrupted only if status file exists and invalid content.
Change-Id: I8443c0335b872645b54c0aa77d9893dbe2589c92
Signed-off-by: Aravinda VK <avishwan@redhat.com>
BUG: 1257546
Reviewed-on: http://review.gluster.org/11699
Reviewed-on: http://review.gluster.org/12028
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Milind Changire <mchangir@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/glusterfind/src/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/glusterfind/src/main.py b/tools/glusterfind/src/main.py index 9a6a2aca097..b4d2c7eff72 100644 --- a/tools/glusterfind/src/main.py +++ b/tools/glusterfind/src/main.py @@ -519,7 +519,7 @@ def mode_list(session_dir, args): last_processed = f.read().strip() except (OSError, IOError) as e: if e.errno == ENOENT: - pass + continue else: raise output.append((session, volname, last_processed)) |