X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=account.py;h=293fc3f4687b90a2b4f1fc1144015d21f5bc2ae9;hb=e57432c1dfdfeaa52cc32799e2abbc34b7704ce9;hp=063b6d0b2fba10932194539dc827835d65a2ed91;hpb=58ef15201bfdb586fcf06fba278904dc1e383172;p=nodemanager.git diff --git a/account.py b/account.py index 063b6d0..293fc3f 100644 --- a/account.py +++ b/account.py @@ -207,7 +207,7 @@ class Worker: if rec['reservation_alive']: # this sliver has the lease, it is safe to start it if not self.is_running(): - self.start() + self.start(rec) else: self.configure(rec) else: # not having the lease, do not start it @@ -217,7 +217,7 @@ class Worker: # in a reservable node else: if not self.is_running() or next_class != curr_class: - self.start() + self.start(rec) else: self.configure(rec)