Skip to content

Commit

Permalink
fix:log_spam
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 15, 2024
1 parent c37b856 commit 9e75e84
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ovos_core/intent_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,14 +717,14 @@ def shutdown(self):
self.utterance_plugins.shutdown()
self.metadata_plugins.shutdown()
self._adapt_service.shutdown()
self.padacioso_service.shutdown()
if self.padatious_service:
self.padatious_service.shutdown()
self.common_qa.shutdown()
self.converse.shutdown()
self.fallback.shutdown()
if self.ocp:
self.ocp.shutdown()
self._padacioso_service.shutdown()
if self._padatious_service:
self._padatious_service.shutdown()
self._common_qa.shutdown()
self._converse.shutdown()
self._fallback.shutdown()
if self._ocp:
self._ocp.shutdown()

self.bus.remove('register_vocab', self.handle_register_vocab)
self.bus.remove('register_intent', self.handle_register_intent)
Expand Down

0 comments on commit 9e75e84

Please sign in to comment.