Skip to content

Commit

Permalink
Temporarily disabled the fix for 15234
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Ananev <[email protected]>
  • Loading branch information
artemananiev committed Sep 13, 2024
1 parent 37c0842 commit 8510ead
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ private void run() {
logger.info(RECONNECT.getMarker(), this.toString() + " start run()");
try {
while (!Thread.currentThread().isInterrupted()) {
final int viewId = readInt();
final int viewId = inputStream.readInt();
if (viewId < 0) {
logger.info(RECONNECT.getMarker(), "Async input stream is done");
alive.set(false);
break;
}
final int len = readInt();
final int len = inputStream.readInt();
final byte[] messageBytes = new byte[len];
readBytes(messageBytes);
inputStream.readNBytes(messageBytes, 0, len);

if (useSharedQueue.contains(viewId)) {
assert !viewQueues.containsKey(viewId);
Expand Down

0 comments on commit 8510ead

Please sign in to comment.