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
Hello everyone. I see in the sentry sometimes this errors. Maybe someone are faced also with this issues?
The text was updated successfully, but these errors were encountered:
This is a bug(i think) that i "fixed" in the version I forked... i just changed the write() method in TcpSocketClient:
public void write(final int msgId, final byte[] data) { writeExecutor.execute(new Runnable() { @Override public void run() { // THIS IS THE FIX VALIDATION *********************** if (socket == null) { receiverListener.onError(getId(), new IOException("Attempted to write to closed socket")); return; } try { socket.getOutputStream().write(data); receiverListener.onWritten(getId(), msgId, null); } catch (IOException e) { receiverListener.onWritten(getId(), msgId, e); receiverListener.onError(getId(), e); } } }); }
Sorry, something went wrong.
And this code will fix problem? Maybe need to add pull request for it?
@marianolc I've checked in library and see the same code as you wrote me. I don't understand where need to add fix.
No branches or pull requests
Hello everyone. I see in the sentry sometimes this errors. Maybe someone are faced also with this issues?
The text was updated successfully, but these errors were encountered: