Example #1
0
 def __read_topic_sets(self, ts_config):
     '''Reads in all the topic sets from the specified sources.'''
     tracer.debug("called")
     for source in ts_config['sources']:
         input_handler = Factory.create(source[0], source[1])
         commits = input_handler.get_commits()
         self.__read_commits(input_handler, commits)
     assert False
Example #2
0
 def __read_topic_sets(self, ts_config):
     '''Reads in all the topic sets from the specified sources.'''
     tracer.debug("Called.")
     for source in ts_config['sources']:
         input_handler = Factory.create(source[0], source[1])
         if input_handler is None:
             continue
         commits = input_handler.get_commits()
         self.__read_commits(input_handler, commits)
     tracer.debug("Finished.")
Example #3
0
 def __read_topic_sets(self, ts_config):
     '''Reads in all the topic sets from the specified sources.'''
     tracer.debug("Called.")
     for source in ts_config['sources']:
         input_handler = Factory.create(source[0], source[1])
         if input_handler == None:
             continue
         commits = input_handler.get_commits()
         self.__read_commits(input_handler, commits)
     tracer.debug("Finished.")