From 2da55f7c8337b20d3fcf584ff2fe367652348ef4 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Tue, 1 Jul 2008 10:43:11 +0000 Subject: [PATCH] Burnin doesn't need a Processor In 2.0 burnin submits job to the master daemon, so it doesn't need to create an internal Processor anymore. Even if the processor is not used anywhere in the burnin code it was still initialized as a leftover of how burnin used to work. Fixing this. Reviewed-by: iustinp --- tools/burnin | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/burnin b/tools/burnin index c35a8c275..339a7e293 100755 --- a/tools/burnin +++ b/tools/burnin @@ -64,7 +64,6 @@ class Burner(object): """Constructor.""" logger.SetupLogging(program="ganeti/burnin", debug=False) self._feed_buf = StringIO() - self.proc = mcpu.Processor(feedback=self.Feedback) self.nodes = [] self.instances = [] self.to_rem = [] -- GitLab