CC-3811: Error found in Media Monitor and Apache's log about Media Monitor try to store recorded file

This commit is contained in:
Martin Konecny 2012-05-15 17:36:33 -04:00
parent 4fd7cd75e9
commit 191de74bae
1 changed files with 4 additions and 1 deletions

View File

@ -127,7 +127,10 @@ class AirtimeProcessEvent(ProcessEvent):
del self.create_dict[event.pathname]
self.handle_created_file(event.dir, event.pathname, event.name)
except KeyError, e:
self.logger.error("%s does not exist in create_dict", event.pathname)
pass
#self.logger.warn("%s does not exist in create_dict", event.pathname)
#Uncomment the above warning when we fix CC-3830 for 2.1.1
def handle_created_file(self, dir, pathname, name):
if not dir: