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
Hi. I updated xdebug from 2.9.8 to 3.0.2 and it started giving this error on almost every step, sometimes straight away when I start debugging:
- [ERROR] {Thu 14 2021 17:05:28} An error occured: <class 'UnicodeDecodeError'>
Traceback (most recent call last):
File "/home/user/.vim/plugged/vdebug/python3/vdebug/event.py", line 784, in dispatch_event
Dispatcher.events[name](self.__session_handler).run(*args)
File "/home/user/.vim/plugged/vdebug/python3/vdebug/event.py", line 660, in run
self.ui.windows.watch().accept_renderer(rend)
File "/home/user/.vim/plugged/vdebug/python3/vdebug/ui/vimui.py", line 619, in accept_renderer
self.write(renderer.render())
File "/home/user/.vim/plugged/vdebug/python3/vdebug/ui/vimui.py", line 910, in render
properties = self.response.get_context()
File "/home/user/.vim/plugged/vdebug/python3/vdebug/dbgp.py", line 125, in get_context
self.create_properties(ContextProperty(c))
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc5 in position 1023: unexpected end of data
I'm trying to prepare a minimal example that triggers it but nothing "simple" seems to be working so I decided to ask - is this a known issue? The error doesn't prevent following the code step by step but the variable context is empty and pressing <F11> triggers same error again.
The text was updated successfully, but these errors were encountered:
got the same error here, thus not in the same position or byte.
i've done several things before it broke (switching to php-fpm) and am not sure which one is at fault, but it was running on xdebug3 for me before. here is the tracecall:
- [ERROR] {jeu. 03 2022 16:27:42} An error occured: <class 'UnicodeDecodeError'>
Traceback (most recent call last):
File "/home/jc/.vim/plug/vdebug/python3/vdebug/event.py", line 784, in dispatch_event
Dispatcher.events[name](self.__session_handler).run(*args)
File "/home/jc/.vim/plug/vdebug/python3/vdebug/event.py", line 660, in run
self.ui.windows.watch().accept_renderer(rend)
File "/home/jc/.vim/plug/vdebug/python3/vdebug/ui/vimui.py", line 619, in accept_renderer
self.write(renderer.render())
File "/home/jc/.vim/plug/vdebug/python3/vdebug/ui/vimui.py", line 910, in render
properties = self.response.get_context()
File "/home/jc/.vim/plug/vdebug/python3/vdebug/dbgp.py", line 125, in get_context
self.create_properties(ContextProperty(c))
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 12: invalid continuation byte
Hi. I updated
xdebug
from 2.9.8 to 3.0.2 and it started giving this error on almost every step, sometimes straight away when I start debugging:I'm trying to prepare a minimal example that triggers it but nothing "simple" seems to be working so I decided to ask - is this a known issue? The error doesn't prevent following the code step by step but the variable context is empty and pressing
<F11>
triggers same error again.The text was updated successfully, but these errors were encountered: