deleted prints

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%4032
This commit is contained in:
olveyra 2008-06-30 14:24:49 +00:00
parent 53838d6a7d
commit 8a81fe82c7
1 changed files with 0 additions and 3 deletions

View File

@ -34,7 +34,6 @@ class Node:
if not status:
self.available = False
else:
print ">----------<"
self.available = True
self.running = status['running']
self.closing = status['closing']
@ -43,10 +42,8 @@ class Node:
self.timestamp = status['timestamp']
self.loadavg = status['loadavg']
self.logdir = status['logdir']
print "Running: %s" % self.running
free_slots = self.maxproc - len(self.running)
while free_slots > 0 and self.master.pending:
print "Free slots %s" % free_slots
pending = self.master.pending.pop(0)
self.run(pending)
free_slots -= 1