diff --git a/src/cluster_client.cpp b/src/cluster_client.cpp index d0173cd0..8599aac7 100644 --- a/src/cluster_client.cpp +++ b/src/cluster_client.cpp @@ -155,14 +155,14 @@ restart: has_writes = has_writes || !rm; if (is_flush) { - has_flushes = has_writes || !rm; + has_flushes = has_flushes || !rm; } } else if (opcode == OSD_OP_SYNC) { // Postpone writes until previous SYNC completes // ...so dirty_writes can't contain anything newer than SYNC - has_flushes = has_writes || !rm; + has_flushes = has_flushes || !rm; } if (rm) {