Skip to content

Commit

Permalink
Likely fix for issue #42
Browse files Browse the repository at this point in the history
On inturruption, the Command class is nulling the output. But
this is causing the statemachine to not know what to do with the
actual output it eventually gets. If we leave the output there,
the RSM can still update the output, even though the client has
moved on.
  • Loading branch information
taer committed Feb 27, 2015
1 parent bd5227f commit 3e20467
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/lambdaworks/redis/protocol/Command.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ protected void interruptTask() {

if (latch.getCount() == 1) {
latch.countDown();
output = null;
}
}

Expand Down

0 comments on commit 3e20467

Please sign in to comment.