You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If receptor is started and an invalid scheme is given to a --listen flag, then receptor will crash with an unhelpful traceback:
$ poetry run receptor --data-dir="$(mktemp --directory)" node --listen='harglebargle://127.0.0.1:8888'ERROR 2020-02-18 10:36:39,398 __main__ main: an error occured while running receptorTraceback (most recent call last): File "/home/ichimonji10/code/receptor/receptor/__main__.py", line 59, in main config.go() File "/home/ichimonji10/code/receptor/receptor/config.py", line 477, in go self._parsed_args.func(self) File "/home/ichimonji10/code/receptor/receptor/entrypoints.py", line 49, in run_as_node controller.enable_server(config.node_listen) File "/home/ichimonji10/code/receptor/receptor/controller.py", line 33, in enable_server self.loop.create_task(listener) File "/usr/lib/python3.8/asyncio/base_events.py", line 431, in create_task task = tasks.Task(coro, loop=self, name=name)TypeError: a coroutine was expected, got None
It is correct for receptor to bail, but the traceback shown is unhelpful. It would be better if receptor printed a concise message that in some way pointed to the --listen flag, rather than complaining about the lack of a coroutine.
The text was updated successfully, but these errors were encountered:
If receptor is started and an invalid scheme is given to a
--listen
flag, then receptor will crash with an unhelpful traceback:It is correct for receptor to bail, but the traceback shown is unhelpful. It would be better if receptor printed a concise message that in some way pointed to the
--listen
flag, rather than complaining about the lack of a coroutine.The text was updated successfully, but these errors were encountered: