Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongDaeKim committed Oct 24, 2019
1 parent a8244d2 commit df8efb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void run() {
WALEntryBatch batch =
new WALEntryBatch(replicationBatchCountCapacity, replicationBatchSizeCapacity);
boolean hasNext;
while ((hasNext = entryStream.hasNext()) != true) {
while ((hasNext = entryStream.hasNext()) == true) {
Entry entry = entryStream.next();
entry = filterEntry(entry);
if (entry != null) {
Expand Down

0 comments on commit df8efb2

Please sign in to comment.