removed node boot/validate methods, since it was using a circular reference to run a CoreService method

This commit is contained in:
Blake J. Harnden 2018-06-22 11:59:16 -07:00
parent 37517c45f4
commit 0efcd910db
6 changed files with 3 additions and 47 deletions

View file

@ -727,7 +727,7 @@ class Session(object):
# add a control interface if configured
logger.info("booting node: %s", obj.name)
self.add_remove_control_interface(node=obj, remove=False)
result = pool.apply_async(obj.boot)
result = pool.apply_async(self.services.bootnodeservices, (obj,))
results.append(result)
pool.close()