Skip to content

Commit 3306eb2

Browse files
authored
Merge pull request #156 from wepay/Waltz-0.12.1
Waltz version 0.12.1
2 parents 0ab5904 + ff285af commit 3306eb2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project.ext {
2222
assertjVersion = '3.8.0'
2323
zkToolsVersion = '0.7.3'
2424
yamlVersion = '1.20'
25-
riffVersion = '2.5.0'
25+
riffVersion = '2.5.1'
2626
jacksonVersion = '2.9.6'
2727
jettyVersion = '9.4.12.v20180830'
2828
mainClass = 'Main'

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
group=com.wepay.waltz
22
sourceCompatibility=1.8
3-
version=0.12.0
3+
version=0.12.1

waltz-server/src/main/java/com/wepay/waltz/server/internal/WaltzServerHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public void onChannelInactive() {
241241
partitionClientsNotRemoved.add(partition.partitionId);
242242
}
243243
}
244-
if (!partitionClientsNotRemoved.isEmpty()) {
244+
if (!partitionClientsNotRemoved.isEmpty() && handler.clientId != null && handler.clientId != -1) {
245245
LOGGER.info(String.format("WaltzServerHandler ClientId: %d, SeqNum: %d, partitionClientsNotRemoved: %s",
246246
handler.clientId, handler.seqNum, partitionClientsNotRemoved));
247247
}

0 commit comments

Comments
 (0)