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

fix/log_spam #22

Merged
merged 2 commits into from
Dec 30, 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ dist

# Created by unit tests
.pytest_cache/
/.gtm/
5 changes: 3 additions & 2 deletions ovos_messagebus/event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import sys
import traceback

from ovos_utils.messagebus import FakeMessage as Message
from ovos_utils.fakebus import Message
from ovos_utils.log import LOG
from ovos_config import Configuration
from pyee import EventEmitter
Expand Down Expand Up @@ -65,7 +65,8 @@ def on_message(self, message):
client.write_message(message)

def open(self):
self.write_message(Message("connected").serialize())
self.write_message(Message("connected",
context={"session": {"session_id": "default"}}).serialize())
client_connections.append(self)

def on_close(self):
Expand Down
Loading