def tearDown(self):
     self.purge_queues()
     for pid in self.pids:
         self.container.proc_manager.terminate_process(pid)
     IngestionManagementIntTest.clean_subscriptions()
     for queue in self.queue_buffer:
         if isinstance(queue, ExchangeNameQueue):
             queue.delete()
         elif isinstance(queue, str):
             xn = self.container.ex_manager.create_xn_queue(queue)
             xn.delete()
 def tearDown(self):
     self.purge_queues()
     for pid in self.pids:
         self.container.proc_manager.terminate_process(pid)
     IngestionManagementIntTest.clean_subscriptions()
     for queue in self.queue_buffer:
         if isinstance(queue, ExchangeNameQueue):
             queue.delete()
         elif isinstance(queue, str):
             xn = self.container.ex_manager.create_xn_queue(queue)
             xn.delete()
    def cleaning_up(self):
        for pid in self.pids:
            log.debug("number of pids to be terminated: %s", len(self.pids))
            try:
                self.process_dispatcher.cancel_process(pid)
                log.debug("Terminated the process: %s", pid)
            except:
                log.debug("could not terminate the process id: %s" % pid)
        IngestionManagementIntTest.clean_subscriptions()

        for xn in self.exchange_names:
            xni = self.container.ex_manager.create_xn_queue(xn)
            xni.delete()
        for xp in self.exchange_points:
            xpi = self.container.ex_manager.create_xp(xp)
            xpi.delete()
示例#4
0
    def cleaning_up(self):
        for pid in self.pids:
            log.debug("number of pids to be terminated: %s", len(self.pids))
            try:
                self.process_dispatcher.cancel_process(pid)
                log.debug("Terminated the process: %s", pid)
            except:
                log.debug("could not terminate the process id: %s" % pid)
        IngestionManagementIntTest.clean_subscriptions()

        for xn in self.exchange_names:
            xni = self.container.ex_manager.create_xn_queue(xn)
            xni.delete()
        for xp in self.exchange_points:
            xpi = self.container.ex_manager.create_xp(xp)
            xpi.delete()
 def tearDown(self):
     self.purge_queues()
     for pid in self.pids:
         self.process_dispatcher.cancel_process(pid)
     IngestionManagementIntTest.clean_subscriptions()