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
I see the following type of warnings in the logs when using pyduro
WARNING py.warnings /usr/local/lib/python3.11/site-packages/pyduro/actions/set.py:45: ResourceWarning: unclosed <socket.socket fd=4, family=2, type=2, proto=0, laddr=('0.0.0.0', 1901)>
Which seems to relate to the fact that the socket that is created in Frame.send does not get properly closed. See: https://docs.python.org/3/library/socket.html#socket.socket.close
socket
Frame.send
The text was updated successfully, but these errors were encountered:
I get similar ones too:
WARNING py.warnings /usr/local/lib/python3.11/site-packages/pyduro/actions/raw.py:38: ResourceWarning: unclosed <socket.socket fd=4, family=2, type=2, proto=0, laddr=('0.0.0.0', 1901)> response = frame.send(burner_address, verbose=verbose) WARNING py.warnings /usr/local/lib/python3.11/site-packages/pyduro/actions/get.py:79: ResourceWarning: unclosed <socket.socket fd=4, family=2, type=2, proto=0, laddr=('0.0.0.0', 1901)> response = frame.send(burner_address, verbose=verbose)
Sorry, something went wrong.
No branches or pull requests
I see the following type of warnings in the logs when using pyduro
Which seems to relate to the fact that the
socket
that is created inFrame.send
does not get properly closed. See: https://docs.python.org/3/library/socket.html#socket.socket.closeThe text was updated successfully, but these errors were encountered: