cache: load_tasks: Do not pre-load tasks without uuid

This commit is contained in:
Tomas Babej 2015-04-05 21:27:27 +02:00
parent 68efe7e1f9
commit e5adf64719

View file

@ -157,6 +157,9 @@ class TaskCache(object):
tw = self.warriors[match.group('source') or 'default']
uuid = match.group('uuid')
if not uuid:
continue
raw_task_info.append((uuid, tw))
for tw in self.warriors.values():