Skip to content
Snippets Groups Projects
Commit e16c8ed5 authored by sveseli's avatar sveseli
Browse files

no need for processing if there are no processors

parent fb7965ac
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,9 @@ class FileProcessingThread(threading.Thread):
self.logger = LoggingManager.getInstance().getLogger(name)
def processFile(self, fileInfo):
if not len(self.fileProcessorKeyList):
return
filePath = fileInfo.get('filePath')
try:
statusMonitor = fileInfo.get('statusMonitor')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment