Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ovos utils #2

Merged
merged 3 commits into from
Mar 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ovos_messagebus/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from ovos_utils import create_daemon, wait_for_exit_signal
from ovos_messagebus.load_config import load_message_bus_config
from ovos_utils.log import LOG, init_service_logger
from ovos_utils.process_utils import reset_sigint_handler, PIDLock
from tornado import web, ioloop

from ovos_messagebus.event_handler import MessageBusEventHandler
Expand All @@ -40,7 +41,9 @@ def on_stopping():


def main(ready_hook=on_ready, error_hook=on_error, stopping_hook=on_stopping):
reset_sigint_handler()
init_service_logger("bus")
PIDLock("bus")
LOG.info('Starting message bus service...')
config = load_message_bus_config()
routes = [(config.route, MessageBusEventHandler)]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tornado~=6.0, >=6.0.3
ovos-utils~=0.0, >=0.0.28
ovos-utils~=0.0, >=0.0.29a1
ovos-config~=0.0, >=0.0.5