VSCode Python SSH - 调试中止,没有错误或警告
我正在远程服务器上开发一个应用程序。 我正在使用 Python,并通过 ssh 与特定扩展名进行连接。 我开始调试,一切似乎都正常进行,但调试突然停止并且没有任何原因(错误或警告)。
谁能建议我在哪里寻找原因或如何追踪问题? 该脚本在 VSCode 外部执行,运行顺利。
提前致谢。
I am developing an application on a remote server.
I'm using Python and am connected via ssh with the specific extension.
I start debugging and everything seems to proceed normally but suddenly debugging stops and there is no reason (error or warning).
Can anyone suggest me where to look for the reason or how to trace the problem?
The script, executed outside VSCode, runs smoothly.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我找到了可能的原因,因此找到了解决方案。
MariaDB 的导入顺序和模块导入存在问题。通过将这个导入移到头部,问题就解决了。
in the end I found a possible cause and, therefore, the solution.
There is a problem with the sequence of imports and module import for MariaDB. By moving this import to the head, the problem was solved.