Changed a few router defaults

This commit is contained in:
Seth House 2014-08-21 18:35:50 -06:00
parent 2fc6267abc
commit 5b8f2a471a

View File

@ -71,7 +71,7 @@ class RAETChannel(Channel):
not already setup such as in salt-call to communicate to-from the minion
'''
mid = self.opts['id']
mid = self.opts.get('id', 'master')
yid = nacling.uuid(size=18)
name = 'channel' + yid
stack = LaneStack(name=name,
@ -113,7 +113,7 @@ class RAETChannel(Channel):
self.__prep_stack()
tried = 1
start = time.time()
mid = self.opts.get('id', 'master')
mid = self.opts.get('id', None)
track = nacling.uuid(18)
src = (mid, self.stack.local.name, track)
self.route = {'src': src, 'dst': self.dst}