daemon: Set session configuration before setting the initial session state.

This commit is contained in:
tgoff0 2015-03-24 23:30:04 +00:00
parent abaed4924b
commit 5d08aa21bf

View file

@ -77,12 +77,12 @@ class Session(object):
self._state = None self._state = None
self._hooks = {} self._hooks = {}
self._state_hooks = {} self._state_hooks = {}
# dict of configuration items from /etc/core/core.conf config file
self.cfg = cfg
self.add_state_hook(coreapi.CORE_EVENT_RUNTIME_STATE, self.add_state_hook(coreapi.CORE_EVENT_RUNTIME_STATE,
self.runtime_state_hook) self.runtime_state_hook)
self.setstate(state=coreapi.CORE_EVENT_DEFINITION_STATE, self.setstate(state=coreapi.CORE_EVENT_DEFINITION_STATE,
info=False, sendevent=False) info=False, sendevent=False)
# dict of configuration items from /etc/core/core.conf config file
self.cfg = cfg
self.server = server self.server = server
if not persistent: if not persistent:
self.addsession(self) self.addsession(self)