Feature/msm 0.7.6 (#2136)
* Log error when creating Padatious * Update msm to v0.7.6 This handles connection errors during the startup procedure and improves the skill_gid when no network is availablepull/2137/head
parent
86df2cefd4
commit
b1348de6f7
|
@ -64,9 +64,12 @@ def _starting_up():
|
|||
|
||||
# Create the Intent manager, which converts utterances to intents
|
||||
# This is the heart of the voice invoked skill system
|
||||
|
||||
service = IntentService(bus)
|
||||
PadatiousService(bus, service)
|
||||
try:
|
||||
PadatiousService(bus, service)
|
||||
except Exception as e:
|
||||
LOG.exception('Failed to create padatious handlers '
|
||||
'({})'.format(repr(e)))
|
||||
event_scheduler = EventScheduler(bus)
|
||||
|
||||
# Create a thread that monitors the loaded skills, looking for updates
|
||||
|
|
|
@ -23,7 +23,7 @@ google-api-python-client==1.6.4
|
|||
fasteners==0.14.1
|
||||
PyYAML==3.13
|
||||
|
||||
msm==0.7.5
|
||||
msm==0.7.6
|
||||
msk==0.3.12
|
||||
adapt-parser==0.3.2
|
||||
padatious==0.4.6
|
||||
|
|
Loading…
Reference in New Issue