removed issue with double loading services from core-daemon, fixed exceptions noted as not an error previously and updated code to more gracefully handle those cases, fixed issue with add_node when setting node.ype for all nodes

This commit is contained in:
Blake J. Harnden 2018-04-26 14:26:39 -07:00
parent dc751dde2b
commit 4a2810e9b2
5 changed files with 22 additions and 32 deletions

View file

@ -13,7 +13,6 @@ import time
from core import constants
from core import enumerations
from core import logger
from core import services
from core.legacy.corehandler import CoreHandler
from core.legacy.coreserver import CoreServer
from core.misc import nodeutils
@ -139,7 +138,4 @@ if __name__ == "__main__":
nodeutils.update_node_map(OVS_NODES)
# load default services
services.load()
main()