We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While using debugpy v1.2.0 on Solaris 11.4 I encountered the same issue as with ptvsd earlier (see microsoft/ptvsd#1237 for reference).
The fix in this case is to modify
pydevd_comm.py
And to comment out the line
s.setsockopt(IPPROTO_TCP, TCP_KEEPIDLE, 1)
After this modification debugpy works also on Solaris.
The text was updated successfully, but these errors were encountered:
Handle invalid socket options. Fixes microsoft#491
991af12
9351639
No branches or pull requests
While using debugpy v1.2.0 on Solaris 11.4 I encountered the same issue as with ptvsd earlier (see microsoft/ptvsd#1237 for reference).
The fix in this case is to modify
pydevd_comm.py
And to comment out the line
s.setsockopt(IPPROTO_TCP, TCP_KEEPIDLE, 1)
After this modification debugpy works also on Solaris.
The text was updated successfully, but these errors were encountered: