Julian_Orteil

Results 37 comments of Julian_Orteil

This app is multithreaded and multiprocessed using the stdlib threading and multiprocessing modules and PyQt5's QThread class. So, using 'enqueue' is kind of forced here ๐Ÿ˜•

Excellent. Thank you for the prompt response. I'll implement your suggestion and leave this bug report open if you wish to link a pull request to it. Jules

@Delgan **Update:** I'm unable to use the workarounds you proposed. Both produce errors, one in stackprinter and the other in loguru. *Proposed solution 1:* ``` try: tensorrt.do_something() except InferenceServerException: type,...

@Delgan Anytime! Thank you for creating a PR in the stackprinter repo for me. I also thought I would bring another workaround to this issue as well. Per the docs,...

Update: After catching the error, I got a better stacktrace that might help track down the issue: ```python Traceback (most recent call last): File "c:\Users\user\.vscode\extensions\ms-python.python-2022.0.1814523869\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_monkey.py", line 1054, in __call__ ret...

For clarification, we believe the exact issue to be a lack of a space between ``:py:class:`~stepseries.responses.Busy` `` and ``ใฎๅˆฅๅใงใ™ใ€‚`` in the example image above.

Further data for the bug report, my `PLOTLY_DASH` in my settings.py: ```python PLOTLY_DASH = { # Route used for the message pipe websocket connection "ws_route": "dpd/ws/channel", # Route used for...

Fixed by manually implementing the route from `django_plotly_dash.routing`. If you have a `routing.py` or `asgi.py` (I have `asgi.py`), you may need to implement something like the following: ```python from django_plotly_dash.consumers...

@GibbsConsulting Aye. I attempted to follow the demo's example, but that unfortunately didn't work. It results in this `TypeError`: ```python 2022-01-13 08:09:43.393 | ERROR | daphne.server:application_checker:290 - Exception inside application:...

I see. It might be useful to mention that in the README. Thank you.