From 13bc975d3022ea8e72769ad38de224b9869f5aab Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 12 May 2013 14:57:04 -0500 Subject: Fix reporead issue with temporary database files We shouldn't be tripping ourselves up on "hidden" files. Signed-off-by: Dan McGee --- devel/management/commands/reporead_inotify.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/devel/management/commands/reporead_inotify.py b/devel/management/commands/reporead_inotify.py index 8c1e47bf..6aa4e0e0 100644 --- a/devel/management/commands/reporead_inotify.py +++ b/devel/management/commands/reporead_inotify.py @@ -192,10 +192,11 @@ class EventHandler(pyinotify.ProcessEvent): def process_default(self, event): '''Primary event processing function which kicks off reporead timer threads if a files database was updated.''' - if not event.name: + name = event.name + if not name: return - # screen to only the files we care about - if event.name.endswith('.files.tar.gz'): + # screen to only the files we care about, skipping temp files + if name.endswith('.files.tar.gz') and not name.startswith('.'): path = event.pathname stat = os.stat(path) database = self.databases.get(path, None) -- cgit v1.2.3