-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Moving ovos-bus-client to requirements.txt? #137
Comments
will look into that issue, but some clarifications
|
I see, then I guess, Thanks |
JarbasAl
added a commit
that referenced
this issue
May 1, 2023
``` Uncaught exception GET /core (127.0.0.1) HTTPServerRequest(protocol='http', host='0.0.0.0:8181', method='GET', uri='/core', version='HTTP/1.1', remote_ip='127.0.0.1') Traceback (most recent call last): File "/home/ovos/.venv/lib/python3.11/site-packages/ovos_utils/messagebus.py", line 160, in __new__ from mycroft_bus_client import Message as _M ModuleNotFoundError: No module named 'mycroft_bus_client' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/ovos/.venv/lib/python3.11/site-packages/tornado/websocket.py", line 937, in _accept_connection open_result = handler.open(*handler.open_args, **handler.open_kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/ovos/.venv/lib/python3.11/site-packages/ovos_messagebus/event_handler.py", line 55, in open self.write_message(Message("connected").serialize()) ^^^^^^^^^^^^^^^^^^^^ File "/home/ovos/.venv/lib/python3.11/site-packages/ovos_utils/messagebus.py", line 163, in __new__ return super().__new__(cls, *args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: object.__new__() takes exactly one argument (the type to instantiate) ``` closes #137 explanation https://stackoverflow.com/questions/59217884/new-method-giving-error-object-new-takes-exactly-one-argument-the-typ
Merged
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got this error on a fresh installed container, I think
ovos-bus-client
should be part ofrequirements.txt
and not onlyextras.txt
.ovos-messagebus
, requiresovos-utils
which requiresovos-bus-client
in here, not sure we want to keep installingmycroft-messagebus-client
everywhere.The text was updated successfully, but these errors were encountered: