X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=database.py;h=7e75d5568c5a165873470951c917378c5aca43d5;hb=2e9bec5909b8d5b52fe86ed10c058d60c5e6c632;hp=c8623b3bc11395d172ce6a5f50802e54d8bdf6e7;hpb=a4ec40ee564d5f16925aec2e2a383ec37640dd2e;p=nodemanager.git diff --git a/database.py b/database.py index c8623b3..7e75d55 100644 --- a/database.py +++ b/database.py @@ -103,16 +103,18 @@ class Database(dict): logger.verbose("database:sync : loop on %s"%name) if name not in self: accounts.get(name).ensure_destroyed() for name, rec in self.iteritems(): - if rec['instantiation'] == 'plc-instantiated': accounts.get(name).ensure_created(rec) - elif rec['instantiation'] == 'nm-controller': accounts.get(name).ensure_created(rec) + slivr = accounts.get(name) + logger.verbose("database:sync : %s is %s" %(name,slivr._get_class())) + # Make sure we refresh accounts that are running + if rec['instantiation'] == 'plc-instantiated': slivr.ensure_created(rec) + elif rec['instantiation'] == 'nm-controller': slivr.ensure_created(rec) # Back door to ensure PLC overrides Ticket in delegation. - elif rec['instantiation'] == 'delegated': - slivr = accounts.get(name) + elif rec['instantiation'] == 'delegated' and slivr._get_class() != None: # if the ticket has been delivered and the nm-contoroller started the slice # update rspecs and keep them up to date. if slivr.is_running(): slivr.ensure_created(rec) - # Wake up bwmom to update limits. + # Wake up bwmom to update limits. bwmon.lock.set() global dump_requested dump_requested = True