From 9d12575102556d6d24a5498d79857e0d5de148bd Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Tue, 18 Oct 2016 15:56:54 +0200 Subject: [PATCH] swift-recon-cron: do not get confused by files in /srv/node swift-recon-cron looks at the drives mounted in directories below /srv/node, but before this commit, it tried to call listdir() on everything in this directory, even if it is not a directory. Change-Id: Id281352f7ab6ecb520eb00f3649873d8c8678608 Signed-off-by: Stefan Majewsky --- bin/swift-recon-cron | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/swift-recon-cron b/bin/swift-recon-cron index 8b3450b1a2..24246270c2 100755 --- a/bin/swift-recon-cron +++ b/bin/swift-recon-cron @@ -30,6 +30,8 @@ def get_async_count(device_dir, logger): async_count = 0 for i in os.listdir(device_dir): device = os.path.join(device_dir, i) + if not os.path.isdir(device): + continue for asyncdir in os.listdir(device): # skip stuff like "accounts", "containers", etc. if not (asyncdir == ASYNCDIR_BASE or